0g-chain/x/committee/simulation/decoder.go

13 lines
291 B
Go
Raw Normal View History

package simulation
import (
"github.com/cosmos/cosmos-sdk/codec"
2020-04-27 18:19:05 +00:00
"github.com/tendermint/tendermint/libs/kv"
)
// DecodeStore unmarshals the KVPair's Value to the corresponding module type
2020-04-27 18:19:05 +00:00
func DecodeStore(cdc *codec.Codec, kvA, kvB kv.Pair) string {
// TODO implement this
return ""
}