0g-chain/x/pricefeed/abci.go

24 lines
480 B
Go
Raw Normal View History

2019-11-27 14:45:59 +00:00
package pricefeed
import (
"errors"
2019-12-04 16:32:08 +00:00
2019-11-27 14:45:59 +00:00
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/kava-labs/kava/x/pricefeed/types"
2019-11-27 14:45:59 +00:00
)
// EndBlocker updates the current pricefeed
func EndBlocker(ctx sdk.Context, k Keeper) {
// Update the current price of each asset.
2020-05-07 15:11:10 +00:00
for _, market := range k.GetMarkets(ctx) {
if !market.Active {
continue
}
err := k.SetCurrentPrices(ctx, market.MarketID)
if err != nil && !errors.Is(err, types.ErrNoValidPrice) {
panic(err)
2019-11-27 14:45:59 +00:00
}
}
}