You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Wasmvm's KVStore and Cosmos-SDK's KVStore differ in the Iterator interface.
Specifically in the main SDK branch: Iterator(start, end []byte) (Iterator, error)
with Iterator = dbm.Iterator (dbm “github.com/cosmos/cosmos-db”)
For SDK branch using cometbft: Iterator(start, end []byte) Iterator
with Iterator = dbm.Iterator (dbm “github.com/cometbft/cometbft-db”)
Wasmvm: Iterator(start, end []byte) Iterator
with 'Iterator = types.Iterator' ("github.com/CosmWasm/wasmvm/types")
This leads to Interator incompatibility.
The text was updated successfully, but these errors were encountered:
#405
I have an Interator Interface problem.
Currently, Wasmvm's KVStore and Cosmos-SDK's KVStore differ in the Iterator interface.
Specifically in the main SDK branch:
Iterator(start, end []byte) (Iterator, error)
with
Iterator = dbm.Iterator
(dbm “github.com/cosmos/cosmos-db”)For SDK branch using cometbft:
Iterator(start, end []byte) Iterator
with
Iterator = dbm.Iterator
(dbm “github.com/cometbft/cometbft-db”)Wasmvm:
Iterator(start, end []byte) Iterator
with 'Iterator = types.Iterator' ("github.com/CosmWasm/wasmvm/types")
This leads to Interator incompatibility.
The text was updated successfully, but these errors were encountered: