mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-27 08:45:19 +00:00
18 lines
455 B
Go
18 lines
455 B
Go
|
package pricefeed
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/0glabs/0g-chain/x/pricefeed/keeper"
|
||
|
"github.com/0glabs/0g-chain/x/pricefeed/types"
|
||
|
"github.com/cosmos/cosmos-sdk/telemetry"
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
)
|
||
|
|
||
|
// EndBlocker updates the current pricefeed
|
||
|
func EndBlocker(ctx sdk.Context, k keeper.Keeper) {
|
||
|
defer telemetry.ModuleMeasureSince(types.ModuleName, time.Now(), telemetry.MetricKeyEndBlocker)
|
||
|
|
||
|
k.SetCurrentPricesForAllMarkets(ctx)
|
||
|
}
|