Skip to content

Commit

Permalink
tweak params
Browse files Browse the repository at this point in the history
  • Loading branch information
skosito committed Dec 12, 2024
1 parent 5631248 commit 170b261
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions cmd/zetae2e/local/performance.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions e2e/e2etests/e2etests.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
),
Expand All @@ -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,
),
Expand All @@ -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,
),
Expand All @@ -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,
),
Expand Down

0 comments on commit 170b261

Please sign in to comment.