From 228a53d56a9ae2a730119f15c744bcd55363ae82 Mon Sep 17 00:00:00 2001 From: Pierre Rousset Date: Thu, 14 Sep 2023 12:20:17 +0900 Subject: [PATCH] Fix gas limit in eth_sendTransaction calls --- src/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/index.js b/src/index.js index 4f2efba4..a55dcf9f 100644 --- a/src/index.js +++ b/src/index.js @@ -629,7 +629,7 @@ const initialize = async () => { from: accounts[0], to: failingContract.address, value: '0x0', - gasLimit: '0x5028', + gas: '0x5208', maxFeePerGas: '0x2540be400', maxPriorityFeePerGas: '0x3b9aca00', }, @@ -679,7 +679,7 @@ const initialize = async () => { from: accounts[0], to: multisigContract.address, value: '0x16345785D8A0', // 24414062500000 - gasLimit: '0x5028', + gas: '0x5208', maxFeePerGas: '0x2540be400', maxPriorityFeePerGas: '0x3b9aca00', }, @@ -1079,7 +1079,7 @@ const initialize = async () => { from: accounts[0], to: '0x0c54FcCd2e384b4BB6f2E405Bf5Cbc15a017AaFb', value: '0x0', - gasLimit: '0x5208', + gas: '0x5208', gasPrice: '0x2540be400', type: '0x0', }, @@ -1096,7 +1096,7 @@ const initialize = async () => { from: accounts[0], to: '0x0c54FcCd2e384b4BB6f2E405Bf5Cbc15a017AaFb', value: '0x0', - gasLimit: '0x5028', + gas: '0x5208', maxFeePerGas: '0x2540be400', maxPriorityFeePerGas: '0x3b9aca00', },