2019-11-27 14:45:59 +00:00
|
|
|
package pricefeed
|
|
|
|
|
|
|
|
import (
|
2020-06-17 09:09:44 +00:00
|
|
|
"errors"
|
2019-12-04 16:32:08 +00:00
|
|
|
|
2019-11-27 14:45:59 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
2020-06-17 09:09:44 +00:00
|
|
|
"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) {
|
2020-06-17 09:09:44 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|