Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions sei-cosmos/store/multiversion/mvkv.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,6 @@ type VersionIndexedStore struct {
iterateset Iterateset
// TODO: need to add iterateset here as well

// used for iterators - populated at the time of iterator instantiation
// TODO: when we want to perform iteration, we need to move all the dirty keys (writeset and readset) into the sortedTree and then combine with the iterators for the underlying stores
sortedStore *dbm.MemDB // always ascending sorted
// parent stores (both multiversion and underlying parent store)
multiVersionStore MultiVersionStore
parent types.KVStore
Expand All @@ -104,7 +101,6 @@ func NewVersionIndexedStore(parent types.KVStore, multiVersionStore MultiVersion
readset: make(map[string][][]byte),
writeset: make(map[string][]byte),
iterateset: []*iterationTracker{},
sortedStore: dbm.NewMemDB(),
parent: parent,
multiVersionStore: multiVersionStore,
transactionIndex: transactionIndex,
Expand Down
Loading