diff --git a/x/evm/types/tx_args.go b/x/evm/types/tx_args.go index cefa49b7..703c99ce 100644 --- a/x/evm/types/tx_args.go +++ b/x/evm/types/tx_args.go @@ -208,7 +208,7 @@ func (args *TransactionArgs) ToMessage(globalGasCap uint64, baseFee *big.Int) (e gasPrice = args.GasPrice.ToInt() gasFeeCap, gasTipCap = gasPrice, gasPrice } else { - // User specified 1559 gas feilds (or none), use those + // User specified 1559 gas fields (or none), use those gasFeeCap = new(big.Int) if args.MaxFeePerGas != nil { gasFeeCap = args.MaxFeePerGas.ToInt()