2019-11-27 14:45:59 +00:00
|
|
|
package pricefeed
|
|
|
|
|
|
|
|
import (
|
2019-12-04 16:32:08 +00:00
|
|
|
"fmt"
|
|
|
|
|
2019-11-27 14:45:59 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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 {
|
|
|
|
err := k.SetCurrentPrices(ctx, market.MarketID)
|
2019-11-27 14:45:59 +00:00
|
|
|
if err != nil {
|
2019-12-04 16:32:08 +00:00
|
|
|
// In the event of failure, emit an event.
|
|
|
|
ctx.EventManager().EmitEvent(
|
|
|
|
sdk.NewEvent(
|
|
|
|
EventTypeNoValidPrices,
|
2020-05-07 15:11:10 +00:00
|
|
|
sdk.NewAttribute(AttributeMarketID, fmt.Sprintf("%s", market.MarketID)),
|
2019-12-04 16:32:08 +00:00
|
|
|
),
|
|
|
|
)
|
2019-11-27 14:45:59 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|