mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-27 08:45:19 +00:00
21 lines
528 B
Go
21 lines
528 B
Go
|
package committee
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/cosmos/cosmos-sdk/telemetry"
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
|
||
|
abci "github.com/cometbft/cometbft/abci/types"
|
||
|
|
||
|
"github.com/0glabs/0g-chain/x/committee/keeper"
|
||
|
"github.com/0glabs/0g-chain/x/committee/types"
|
||
|
)
|
||
|
|
||
|
// BeginBlocker runs at the start of every block.
|
||
|
func BeginBlocker(ctx sdk.Context, _ abci.RequestBeginBlock, k keeper.Keeper) {
|
||
|
defer telemetry.ModuleMeasureSince(types.ModuleName, time.Now(), telemetry.MetricKeyBeginBlocker)
|
||
|
|
||
|
k.ProcessProposals(ctx)
|
||
|
}
|