From f0517c535c69801be0b164b386a8b76fc842a48c Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Mon, 13 Jan 2025 12:27:51 +0100 Subject: [PATCH] Minor typo tx_args.go --- x/evm/types/tx_args.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()