38 lines
991 B
Go
38 lines
991 B
Go
package keeper
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
// EndBlock also retrieves the bloom filter value from the transient store and commits it to the
|
|
// KVStore. The EVM end block logic doesn't update the validator set, thus it returns
|
|
// an empty slice.
|
|
func (k *Keeper) EndBlock(ctx sdk.Context, req abci.RequestEndBlock) {
|
|
baseFee := k.CalculateBaseFee(ctx)
|
|
if baseFee == nil {
|
|
return
|
|
}
|
|
|
|
// only set base fee if the NoBaseFee param is false
|
|
k.SetBaseFee(ctx, baseFee)
|
|
|
|
if ctx.BlockGasMeter() == nil {
|
|
k.Logger(ctx).Error("block gas meter is nil when setting block gas used")
|
|
return
|
|
}
|
|
|
|
gasUsed := ctx.BlockGasMeter().GasConsumedToLimit()
|
|
|
|
k.SetBlockGasUsed(ctx, gasUsed)
|
|
|
|
ctx.EventManager().EmitEvent(sdk.NewEvent(
|
|
"block_gas",
|
|
sdk.NewAttribute("height", fmt.Sprintf("%d", ctx.BlockHeight())),
|
|
sdk.NewAttribute("amount", fmt.Sprintf("%d", ctx.BlockGasMeter().GasConsumedToLimit())),
|
|
))
|
|
}
|