diff --git a/x/evm/types/tx_args.go b/x/evm/types/tx_args.go index 85ea7c0ef8..24e16f60e2 100644 --- a/x/evm/types/tx_args.go +++ b/x/evm/types/tx_args.go @@ -85,10 +85,6 @@ func (args *TransactionArgs) ToTransaction() *MsgEthereumTx { maxPriorityFeePerGas = sdk.NewIntFromBigInt(args.MaxPriorityFeePerGas.ToInt()) } - if args.GasPrice != nil { - gasPrice = sdk.NewIntFromBigInt(args.GasPrice.ToInt()) - } - if args.Value != nil { value = sdk.NewIntFromBigInt(args.Value.ToInt()) }