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

33 lines
971 B
Go
Raw Normal View History

package simulation
import (
2020-04-01 15:27:38 +00:00
"bytes"
"fmt"
"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 {
2020-04-01 15:27:38 +00:00
switch {
2020-04-04 22:42:35 +00:00
case bytes.Contains(kvA.Key, []byte(types.CurrentPricePrefix)):
2020-04-01 15:27:38 +00:00
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-04 22:42:35 +00:00
case bytes.Contains(kvA.Key, []byte(types.RawPriceFeedPrefix)):
2020-04-06 22:43:43 +00:00
var postedPriceA, postedPriceB []types.PostedPrice
2020-04-01 15:27:38 +00:00
cdc.MustUnmarshalBinaryBare(kvA.Value, &postedPriceA)
cdc.MustUnmarshalBinaryBare(kvB.Value, &postedPriceB)
return fmt.Sprintf("%s\n%s", postedPriceA, postedPriceB)
default:
panic(fmt.Sprintf("invalid %s key prefix %X", types.ModuleName, kvA.Key[:1]))
}
}