From 32314bb757474a85b668842a4787360f47e3a25a Mon Sep 17 00:00:00 2001
From: StefanIliev545 <stefan@obscu.ro>
Date: Mon, 15 Jan 2024 16:29:18 +0200
Subject: [PATCH] More deployment fixes.

---
 .../deployment_scripts/testnet/layer2/001_whitelist_tokens.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/contracts/deployment_scripts/testnet/layer2/001_whitelist_tokens.ts b/contracts/deployment_scripts/testnet/layer2/001_whitelist_tokens.ts
index 371bea2a10..c2cf32d3c4 100644
--- a/contracts/deployment_scripts/testnet/layer2/001_whitelist_tokens.ts
+++ b/contracts/deployment_scripts/testnet/layer2/001_whitelist_tokens.ts
@@ -97,11 +97,11 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
         setTimeout(fail, 30_000)
         const messageBusContract = (await hre.ethers.getContractAt('MessageBus', '0x526c84529b2b8c11f57d93d3f5537aca3aecef9b'));
         const gasLimit = await messageBusContract.estimateGas.verifyMessageFinalized(messages[1], {
-            maxFeePerGas: 2,
+            maxFeePerGas: 1000000001,
         })
         try {
             while (await messageBusContract.callStatic.verifyMessageFinalized(messages[1], {
-                maxFeePerGas: 2,
+                maxFeePerGas: 1000000001,
                 gasLimit: gasLimit.mul(2),
                 from: l2Accounts.deployer
             }) != true) {