Skip to content

Commit

Permalink
make wait time just 30 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
shaspitz committed Sep 19, 2023
1 parent 1fa2bfa commit d089c51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"/;` +
Expand Down

0 comments on commit d089c51

Please sign in to comment.