mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
d04aad5cc9
* fix: remove redundant debt limit param * wip: test pricefeed genesis * fix: pricefeed querier * fix: comments, naming * fix: query path * fix: store methods * fix: query methods * fix: standardize genesis validation
29 lines
599 B
Go
29 lines
599 B
Go
package pricefeed
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
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.
|
|
for _, a := range k.GetMarkets(ctx) {
|
|
if a.Active {
|
|
err := k.SetCurrentPrices(ctx, a.MarketID)
|
|
if err != nil {
|
|
// In the event of failure, emit an event.
|
|
ctx.EventManager().EmitEvent(
|
|
sdk.NewEvent(
|
|
EventTypeNoValidPrices,
|
|
sdk.NewAttribute(AttributeKeyPriceUpdateFailed, fmt.Sprintf("%s", a.MarketID)),
|
|
),
|
|
)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
return
|
|
}
|