diff --git a/cmd/zetae2e/local/performance.go b/cmd/zetae2e/local/performance.go index 55a1cdf44a..6a0b32ea58 100644 --- a/cmd/zetae2e/local/performance.go +++ b/cmd/zetae2e/local/performance.go @@ -79,7 +79,7 @@ func ethereumWithdrawPerformanceRoutine( } if r.ReceiptTimeout == 0 { - r.ReceiptTimeout = 15 * time.Minute + r.ReceiptTimeout = 30 * time.Minute } if r.CctxTimeout == 0 { r.CctxTimeout = 15 * time.Minute @@ -134,7 +134,7 @@ func solanaDepositPerformanceRoutine( } if r.ReceiptTimeout == 0 { - r.ReceiptTimeout = 15 * time.Minute + r.ReceiptTimeout = 30 * time.Minute } if r.CctxTimeout == 0 { r.CctxTimeout = 30 * time.Minute @@ -185,7 +185,7 @@ func solanaWithdrawPerformanceRoutine( } if r.ReceiptTimeout == 0 { - r.ReceiptTimeout = 15 * time.Minute + r.ReceiptTimeout = 30 * time.Minute } if r.CctxTimeout == 0 { r.CctxTimeout = 30 * time.Minute diff --git a/e2e/e2etests/e2etests.go b/e2e/e2etests/e2etests.go index 46149e2346..1dae6f58fb 100644 --- a/e2e/e2etests/e2etests.go +++ b/e2e/e2etests/e2etests.go @@ -776,7 +776,7 @@ var AllE2ETests = []runner.E2ETest{ "stress test SOL deposit", []runner.ArgDefinition{ {Description: "amount in lamports", DefaultValue: "1200000"}, - {Description: "count of SOL deposits", DefaultValue: "50"}, + {Description: "count of SOL deposits", DefaultValue: "40"}, }, TestStressSolanaDeposit, ), @@ -785,7 +785,7 @@ var AllE2ETests = []runner.E2ETest{ "stress test SPL deposit", []runner.ArgDefinition{ {Description: "amount in SPL tokens", DefaultValue: "1200000"}, - {Description: "count of SPL deposits", DefaultValue: "50"}, + {Description: "count of SPL deposits", DefaultValue: "40"}, }, TestStressSPLDeposit, ), @@ -794,7 +794,7 @@ var AllE2ETests = []runner.E2ETest{ "stress test SOL withdrawals", []runner.ArgDefinition{ {Description: "amount in lamports", DefaultValue: "1000000"}, - {Description: "count of SOL withdrawals", DefaultValue: "50"}, + {Description: "count of SOL withdrawals", DefaultValue: "40"}, }, TestStressSolanaWithdraw, ), @@ -803,7 +803,7 @@ var AllE2ETests = []runner.E2ETest{ "stress test SPL withdrawals", []runner.ArgDefinition{ {Description: "amount in SPL tokens", DefaultValue: "1000000"}, - {Description: "count of SPL withdrawals", DefaultValue: "50"}, + {Description: "count of SPL withdrawals", DefaultValue: "40"}, }, TestStressSPLWithdraw, ),