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

33 lines
1.0 KiB
Go
Raw Normal View History

package simulation
// import (
// "bytes"
// "fmt"
2020-04-01 15:27:38 +00:00
// "github.com/cosmos/cosmos-sdk/codec"
2020-04-30 14:23:41 +00:00
// "github.com/tendermint/tendermint/libs/kv"
2020-04-01 15:27:38 +00:00
// "github.com/kava-labs/kava/x/pricefeed/types"
// )
// // DecodeStore unmarshals the KVPair's Value to the corresponding pricefeed type
// func DecodeStore(cdc *codec.Codec, kvA, kvB kv.Pair) string {
// switch {
// case bytes.Contains(kvA.Key, []byte(types.CurrentPricePrefix)):
// var priceA, priceB types.CurrentPrice
// cdc.MustUnmarshalBinaryBare(kvA.Value, &priceA)
// cdc.MustUnmarshalBinaryBare(kvB.Value, &priceB)
// return fmt.Sprintf("%s\n%s", priceA, priceB)
2020-04-01 15:27:38 +00:00
// case bytes.Contains(kvA.Key, []byte(types.RawPriceFeedPrefix)):
// var postedPriceA, postedPriceB []types.PostedPrice
// cdc.MustUnmarshalBinaryBare(kvA.Value, &postedPriceA)
// cdc.MustUnmarshalBinaryBare(kvB.Value, &postedPriceB)
// return fmt.Sprintf("%s\n%s", postedPriceA, postedPriceB)
2020-04-01 15:27:38 +00:00
// default:
// panic(fmt.Sprintf("invalid %s key prefix %X", types.ModuleName, kvA.Key[:1]))
// }
// }