From 049f90e3c3190b5320729c9a33cea478470572f2 Mon Sep 17 00:00:00 2001 From: lumtis Date: Mon, 1 Jan 2024 21:26:32 +0100 Subject: [PATCH] disable header test and increase timeout --- cmd/zetae2e/local/bitcoin.go | 2 +- cmd/zetae2e/local/ethereum.go | 2 +- contrib/localnet/orchestrator/smoketest/utils/zetacore.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/zetae2e/local/bitcoin.go b/cmd/zetae2e/local/bitcoin.go index 7fc2080c93..4c91b9833d 100644 --- a/cmd/zetae2e/local/bitcoin.go +++ b/cmd/zetae2e/local/bitcoin.go @@ -58,7 +58,7 @@ func bitcoinTestRoutine( txEtherDeposit := bitcoinRunner.DepositEther(false) txERC20Deposit := bitcoinRunner.DepositERC20() bitcoinRunner.SetupBitcoinAccount() - bitcoinRunner.DepositBTC(true) + bitcoinRunner.DepositBTC(false) bitcoinRunner.SetupZEVMSwapApp() bitcoinRunner.WaitForMinedCCTX(txZetaDeposit) bitcoinRunner.WaitForMinedCCTX(txEtherDeposit) diff --git a/cmd/zetae2e/local/ethereum.go b/cmd/zetae2e/local/ethereum.go index 73917b0a0e..f8328035ba 100644 --- a/cmd/zetae2e/local/ethereum.go +++ b/cmd/zetae2e/local/ethereum.go @@ -52,7 +52,7 @@ func ethereumTestRoutine( // depositing the necessary tokens on ZetaChain txZetaDeposit := ethereumRunner.DepositZeta() - txEtherDeposit := ethereumRunner.DepositEther(true) + txEtherDeposit := ethereumRunner.DepositEther(false) ethereumRunner.WaitForMinedCCTX(txZetaDeposit) ethereumRunner.WaitForMinedCCTX(txEtherDeposit) diff --git a/contrib/localnet/orchestrator/smoketest/utils/zetacore.go b/contrib/localnet/orchestrator/smoketest/utils/zetacore.go index f1a18e4f71..4ec3111ef1 100644 --- a/contrib/localnet/orchestrator/smoketest/utils/zetacore.go +++ b/contrib/localnet/orchestrator/smoketest/utils/zetacore.go @@ -13,7 +13,7 @@ import ( const ( FungibleAdminName = "fungibleadmin" - DefaultCctxTimeout = 3 * time.Minute + DefaultCctxTimeout = 4 * time.Minute ) // WaitCctxMinedByInTxHash waits until cctx is mined; returns the cctxIndex (the last one)