diff --git a/pkg/core/storage/boltdb_store.go b/pkg/core/storage/boltdb_store.go index c0c1e5f9e..4d1d10ed3 100644 --- a/pkg/core/storage/boltdb_store.go +++ b/pkg/core/storage/boltdb_store.go @@ -7,7 +7,6 @@ import ( "github.com/CityOfZion/neo-go/pkg/io" "github.com/etcd-io/bbolt" - log "github.com/sirupsen/logrus" "github.com/syndtr/goleveldb/leveldb/util" ) @@ -109,7 +108,7 @@ func (s *BoltDBStore) Seek(key []byte, f func(k, v []byte)) { return nil }) if err != nil { - log.Error("error while executing seek in boltDB") + panic(err) } }