From c09ac02dabd976cf1f3f644f70bcc9f455228d8f Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Tue, 26 Sep 2023 15:33:17 +1000 Subject: [PATCH] add gas into and remove type from replayed txs --- ethers/provider.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ethers/provider.nim b/ethers/provider.nim index ecb27fb..dbad828 100644 --- a/ethers/provider.nim +++ b/ethers/provider.nim @@ -90,7 +90,8 @@ func toTransaction*(past: PastTransaction): Transaction = data: past.input, nonce: some past.nonce, to: past.to, - transactionType: past.transactionType, + # transactionType: past.transactionType, + gasLimit: some past.gas, chainId: past.chainId )