From d089c5186f2fd0f24b198c7889a8ea040464b339 Mon Sep 17 00:00:00 2001 From: Shawn <44221603+smarshall-spitzbart@users.noreply.github.com> Date: Tue, 19 Sep 2023 09:25:30 -0700 Subject: [PATCH] make wait time just 30 seconds --- tests/e2e/actions.go | 4 ++-- tests/e2e/config.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/e2e/actions.go b/tests/e2e/actions.go index 631543e42b..090fe64c28 100644 --- a/tests/e2e/actions.go +++ b/tests/e2e/actions.go @@ -1982,9 +1982,9 @@ func (tr TestRun) waitForSlashRetry( action slashPacketRetryAction, verbose bool, ) { - // Retry delay period is set to 200 seconds, see config.go + // Retry delay period is set to 30 seconds, see config.go // wait this amount of time to elapse the period - tr.WaitTime(200 * time.Second) + tr.WaitTime(30 * time.Second) } // GetPathNameForGorelayer returns the name of the path between two given chains used by Gorelayer. diff --git a/tests/e2e/config.go b/tests/e2e/config.go index 4c7a2f3f52..093e32de81 100644 --- a/tests/e2e/config.go +++ b/tests/e2e/config.go @@ -187,7 +187,7 @@ func SlashThrottleTestRun() TestRun { ".app_state.slashing.params.min_signed_per_window = \"0.500000000000000000\" | " + ".app_state.slashing.params.downtime_jail_duration = \"60s\" | " + ".app_state.slashing.params.slash_fraction_downtime = \"0.010000000000000000\" | " + - ".app_state.ccvconsumer.params.retry_delay_period = \"200s\"", + ".app_state.ccvconsumer.params.retry_delay_period = \"30s\"", }, }, tendermintConfigOverride: `s/timeout_commit = "5s"/timeout_commit = "1s"/;` +