Skip to content

Commit

Permalink
disable header test and increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis committed Jan 1, 2024
1 parent e981a54 commit 049f90e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/zetae2e/local/bitcoin.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion cmd/zetae2e/local/ethereum.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion contrib/localnet/orchestrator/smoketest/utils/zetacore.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 049f90e

Please sign in to comment.