Fix engine_sim regression
This commit is contained in:
parent
4fb94cacad
commit
fb2aa1b6f9
|
@ -285,8 +285,8 @@ proc toTransaction(tx: TransactionObject): Transaction =
|
|||
chainId : tx.chainId.get(0.Web3Quantity).ChainId,
|
||||
nonce : tx.nonce.AccountNonce,
|
||||
gasPrice : tx.gasPrice.GasInt,
|
||||
maxPriorityFee : tx.maxFeePerGas.get(0.Web3Quantity).GasInt,
|
||||
maxFee : tx.maxPriorityFeePerGas.get(0.Web3Quantity).GasInt,
|
||||
maxPriorityFee : tx.maxPriorityFeePerGas.get(0.Web3Quantity).GasInt,
|
||||
maxFee : tx.maxFeePerGas.get(0.Web3Quantity).GasInt,
|
||||
gasLimit : tx.gas.GasInt,
|
||||
to : ethAddr tx.to,
|
||||
value : tx.value,
|
||||
|
|
Loading…
Reference in New Issue