2020-02-25 15:11:09 +00:00
|
|
|
package simulation
|
|
|
|
|
|
|
|
import (
|
2020-04-01 15:27:38 +00:00
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
|
2020-02-25 15:11:09 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
|
|
cmn "github.com/tendermint/tendermint/libs/common"
|
2020-04-01 15:27:38 +00:00
|
|
|
|
|
|
|
"github.com/kava-labs/kava/x/pricefeed/types"
|
2020-02-25 15:11:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// DecodeStore unmarshals the KVPair's Value to the corresponding pricefeed type
|
|
|
|
func DecodeStore(cdc *codec.Codec, kvA, kvB cmn.KVPair) 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-01 15:27:38 +00:00
|
|
|
var postedPriceA, postedPriceB types.PostedPrice
|
|
|
|
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]))
|
|
|
|
}
|
2020-02-25 15:11:09 +00:00
|
|
|
}
|