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>
50 lines
1.4 KiB
Go
50 lines
1.4 KiB
Go
package ante
|
|
|
|
import (
|
|
"math/big"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
)
|
|
|
|
// GasWantedDecorator keeps track of the gasWanted amount on the current block in transient store
|
|
// for BaseFee calculation.
|
|
// NOTE: This decorator does not perform any validation
|
|
type GasWantedDecorator struct {
|
|
evmKeeper EVMKeeper
|
|
feeMarketKeeper FeeMarketKeeper
|
|
}
|
|
|
|
// NewGasWantedDecorator creates a new NewGasWantedDecorator
|
|
func NewGasWantedDecorator(
|
|
evmKeeper EVMKeeper,
|
|
feeMarketKeeper FeeMarketKeeper,
|
|
) GasWantedDecorator {
|
|
return GasWantedDecorator{
|
|
evmKeeper,
|
|
feeMarketKeeper,
|
|
}
|
|
}
|
|
|
|
func (gwd GasWantedDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (newCtx sdk.Context, err error) {
|
|
params := gwd.evmKeeper.GetParams(ctx)
|
|
ethCfg := params.ChainConfig.EthereumConfig(gwd.evmKeeper.ChainID())
|
|
|
|
blockHeight := big.NewInt(ctx.BlockHeight())
|
|
london := ethCfg.IsLondon(blockHeight)
|
|
|
|
feeTx, ok := tx.(sdk.FeeTx)
|
|
if ok && london {
|
|
gasWanted := feeTx.GetGas()
|
|
feeMktParams := gwd.feeMarketKeeper.GetParams(ctx)
|
|
// Add total gasWanted to cumulative in block transientStore in FeeMarket module
|
|
if feeMktParams.IsBaseFeeEnabled(ctx.BlockHeight()) {
|
|
if _, err := gwd.feeMarketKeeper.AddTransientGasWanted(ctx, gasWanted); err != nil {
|
|
return ctx, sdkerrors.Wrapf(err, "failed to add gas wanted to transient store")
|
|
}
|
|
}
|
|
}
|
|
|
|
return next(ctx, tx, simulate)
|
|
}
|