Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(e2e): improve E2E reliability for tests on live network #3061

Merged
merged 8 commits into from
Oct 30, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions e2e/runner/v2_zevm.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
gatewayzevmcaller "github.com/zeta-chain/node/pkg/contracts/gatewayzevmcaller"
)

var gasLimit = big.NewInt(1000000)
var gasLimit = big.NewInt(250000)

// V2ETHWithdraw calls Withdraw of Gateway with gas token on ZEVM
func (r *E2ERunner) V2ETHWithdraw(
Expand All @@ -31,7 +31,7 @@ func (r *E2ERunner) V2ETHWithdraw(
return tx
}

// V2ETHWithdrawAndCall calls WithdrawAndCall of Gateway with gas token on ZEVM using arbitrary call
// V2ETHWithdrawAndArbitraryCall calls WithdrawAndCall of Gateway with gas token on ZEVM using arbitrary call
func (r *E2ERunner) V2ETHWithdrawAndArbitraryCall(
receiver ethcommon.Address,
amount *big.Int,
Expand Down
Loading