diff --git a/client/rpc/src/eth/execute.rs b/client/rpc/src/eth/execute.rs index 628b7c4cc6..9f673fd7c5 100644 --- a/client/rpc/src/eth/execute.rs +++ b/client/rpc/src/eth/execute.rs @@ -560,7 +560,6 @@ where gas, value, data, - nonce, access_list, .. } = request; @@ -583,7 +582,7 @@ where value.unwrap_or_default(), gas_limit, gas_price, - nonce, + None, estimate_mode, ) .map_err(|err| internal_err(format!("runtime error: {err}")))? @@ -602,7 +601,7 @@ where gas_limit, max_fee_per_gas, max_priority_fee_per_gas, - nonce, + None, estimate_mode, ) .map_err(|err| internal_err(format!("runtime error: {err}")))? @@ -622,7 +621,7 @@ where gas_limit, max_fee_per_gas, max_priority_fee_per_gas, - nonce, + None, estimate_mode, Some( access_list @@ -647,7 +646,7 @@ where gas_limit, max_fee_per_gas, max_priority_fee_per_gas, - nonce, + None, estimate_mode, Some( access_list @@ -673,7 +672,7 @@ where value.unwrap_or_default(), gas_limit, gas_price, - nonce, + None, estimate_mode, ) .map_err(|err| internal_err(format!("runtime error: {err}")))? @@ -691,7 +690,7 @@ where gas_limit, max_fee_per_gas, max_priority_fee_per_gas, - nonce, + None, estimate_mode, ) .map_err(|err| internal_err(format!("runtime error: {err}")))? @@ -710,7 +709,7 @@ where gas_limit, max_fee_per_gas, max_priority_fee_per_gas, - nonce, + None, estimate_mode, Some( access_list @@ -734,7 +733,7 @@ where gas_limit, max_fee_per_gas, max_priority_fee_per_gas, - nonce, + None, estimate_mode, Some( access_list