diff --git a/app/app.go b/app/app.go index 768ce74..3650995 100644 --- a/app/app.go +++ b/app/app.go @@ -904,6 +904,7 @@ func (app *App) setAnteHandler(txConfig client.TxConfig, wasmConfig wasmtypes.Wa FeegrantKeeper: app.FeeGrantKeeper, SignModeHandler: txConfig.SignModeHandler(), SigGasConsumer: evmosante.SigVerificationGasConsumer, + TxFeeChecker: app.RollappParamsKeeper.CheckTxFeeWithMinGasPrices(), }, DistrKeeper: app.DistrKeeper, SequencersKeeper: app.SequencersKeeper, diff --git a/go.mod b/go.mod index d31063e..bc0fd9a 100644 --- a/go.mod +++ b/go.mod @@ -368,4 +368,5 @@ replace ( github.com/libp2p/go-libp2p-pubsub => github.com/dymensionxyz/go-libp2p-pubsub v0.0.0-20240513081713-3ecd83c19ea2 github.com/osmosis-labs/osmosis/v15 => github.com/dymensionxyz/osmosis/v15 v15.2.0-dymension-v1.1.3 github.com/tendermint/tendermint => github.com/dymensionxyz/cometbft v0.34.29-0.20241128205759-2a9d5f015da5 + github.com/dymensionxyz/dymension-rdk => ../dymension-rdk )