2020-02-25 15:11:09 +00:00
|
|
|
package simulation
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// import (
|
|
|
|
// "bytes"
|
|
|
|
// "fmt"
|
2020-04-01 15:27:38 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// "github.com/cosmos/cosmos-sdk/codec"
|
2020-04-30 14:23:41 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// "github.com/tendermint/tendermint/libs/kv"
|
2020-04-01 15:27:38 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// "github.com/kava-labs/kava/x/pricefeed/types"
|
|
|
|
// )
|
2020-02-25 15:11:09 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// // 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
|
|
|
|
2022-01-08 00:39:27 +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
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// default:
|
|
|
|
// panic(fmt.Sprintf("invalid %s key prefix %X", types.ModuleName, kvA.Key[:1]))
|
|
|
|
// }
|
|
|
|
// }
|