forked from cerc-io/laconicd-deprecated
620f6a6770
* add gasWanted transient store keys * add gasWanted transient store keeper functions * add gasWanted transient store tracker * add comment * remove unncesary comment * remove unnecesary function * fix tests * fix bad comment * remove unnecesary comment * update comment * update changelog * Update CHANGELOG.md Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * add GasWantedDecorator * remove unnecesary comments * gasWanted decorator test * fix tests * fix tests and build * fix lint * updated end block event * Update app/ante/fee_market.go Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * fix undeclared variable * Update app/ante/fee_market_test.go * remove unnecesary line * migrate MinGasMultiplier to FeeMarket module * set limited gas wanted * remove old newKeeper param * update proto comment * fix test * update comments * Update x/feemarket/keeper/abci.go Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * address comments from review * tidy * tests Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
68 lines
2.0 KiB
Go
68 lines
2.0 KiB
Go
package keeper
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
"github.com/tharsis/ethermint/x/feemarket/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/telemetry"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
// BeginBlock updates base fee
|
|
func (k *Keeper) BeginBlock(ctx sdk.Context, req abci.RequestBeginBlock) {
|
|
baseFee := k.CalculateBaseFee(ctx)
|
|
|
|
// return immediately if base fee is nil
|
|
if baseFee == nil {
|
|
return
|
|
}
|
|
|
|
k.SetBaseFee(ctx, baseFee)
|
|
|
|
defer func() {
|
|
telemetry.SetGauge(float32(baseFee.Int64()), "feemarket", "base_fee")
|
|
}()
|
|
|
|
// Store current base fee in event
|
|
ctx.EventManager().EmitEvents(sdk.Events{
|
|
sdk.NewEvent(
|
|
types.EventTypeFeeMarket,
|
|
sdk.NewAttribute(types.AttributeKeyBaseFee, baseFee.String()),
|
|
),
|
|
})
|
|
}
|
|
|
|
// EndBlock update block gas wanted.
|
|
// 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) {
|
|
if ctx.BlockGasMeter() == nil {
|
|
k.Logger(ctx).Error("block gas meter is nil when setting block gas wanted")
|
|
return
|
|
}
|
|
|
|
gasWanted := k.GetTransientGasWanted(ctx)
|
|
gasUsed := ctx.BlockGasMeter().GasConsumedToLimit()
|
|
|
|
// to prevent BaseFee manipulation we limit the gasWanted so that
|
|
// gasWanted = max(gasWanted * MinGasMultiplier, gasUsed)
|
|
// this will be keep BaseFee protected from un-penalized manipulation
|
|
// more info here https://github.com/tharsis/ethermint/pull/1105#discussion_r888798925
|
|
minGasMultiplier := k.GetParams(ctx).MinGasMultiplier
|
|
limitedGasWanted := sdk.NewDec(int64(gasWanted)).Mul(minGasMultiplier)
|
|
gasWanted = sdk.MaxDec(limitedGasWanted, sdk.NewDec(int64(gasUsed))).TruncateInt().Uint64()
|
|
k.SetBlockGasWanted(ctx, gasWanted)
|
|
|
|
defer func() {
|
|
telemetry.SetGauge(float32(gasWanted), "feemarket", "block_gas")
|
|
}()
|
|
|
|
ctx.EventManager().EmitEvent(sdk.NewEvent(
|
|
"block_gas",
|
|
sdk.NewAttribute("height", fmt.Sprintf("%d", ctx.BlockHeight())),
|
|
sdk.NewAttribute("amount", fmt.Sprintf("%d", gasWanted)),
|
|
))
|
|
}
|