From 03149d744e0d6ad0fd9d6a1d463ec5ce8e829f99 Mon Sep 17 00:00:00 2001 From: Roberto Bayardo Date: Wed, 21 Dec 2022 10:47:32 -0800 Subject: [PATCH] fix wrong json field name for maxFeePerDataGas --- internal/ethapi/transaction_args.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ethapi/transaction_args.go b/internal/ethapi/transaction_args.go index bcc7ca1f90d7..62ffc12c5456 100644 --- a/internal/ethapi/transaction_args.go +++ b/internal/ethapi/transaction_args.go @@ -42,7 +42,7 @@ type TransactionArgs struct { GasPrice *hexutil.Big `json:"gasPrice"` MaxFeePerGas *hexutil.Big `json:"maxFeePerGas"` MaxPriorityFeePerGas *hexutil.Big `json:"maxPriorityFeePerGas"` - MaxFeePerDataGas *hexutil.Big `json:"maxFeePerGas"` + MaxFeePerDataGas *hexutil.Big `json:"maxFeePerDataGas"` Value *hexutil.Big `json:"value"` Nonce *hexutil.Uint64 `json:"nonce"`