Skip to content

Commit

Permalink
Increasing permissionless threshold in tests (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-sekara authored Oct 17, 2023
1 parent a17a78c commit 055056e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion integration-tests/ccip-tests/actions/ccip_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ const (
ChaosGroupNetworkBCCIPGeth = "CCIPNetworkBGeth"
RootSnoozeTimeSimulated = 3 * time.Minute
InflightExpirySimulated = 3 * time.Minute
// The higher the load/throughput, the higher value we might need here to guarantee that nonces are not blocked
// 1 day should be enough for most of the cases
PermissionlessExecThreshold = 60 * 60 * 24 // 1 day
// we keep the finality timeout high as it's out of our control
FinalityTimeout = 1 * time.Hour
TokenTransfer string = "WithToken"
Expand Down Expand Up @@ -1988,7 +1991,7 @@ func SetOCR2Configs(commitNodes, execNodes []*client.CLNodesWithKeys, destCCIP D
inflightExpiry,
rootSnooze,
), testhelpers.NewExecOnchainConfig(
60*30,
PermissionlessExecThreshold,
destCCIP.Common.Router.EthAddress,
destCCIP.Common.PriceRegistry.EthAddress,
5,
Expand Down

0 comments on commit 055056e

Please sign in to comment.