diff --git a/store.go b/store.go index 1a4fd08..d81b146 100644 --- a/store.go +++ b/store.go @@ -61,7 +61,7 @@ func (s *Store) NewNestedStore(bucket []byte) *Store { // Codec used by the returned Store. func (s *Store) NewCustomNestedStore(bucket []byte, codec Codec) *Store { return &Store{ - db: db, + db: s.db, bucket: append(s.bucket, bucket), codec: codec, }