From 6748ea9086a0651d680884bfc97868c356c3bb1e Mon Sep 17 00:00:00 2001 From: Mateusz Sekara Date: Tue, 17 Oct 2023 16:02:08 +0200 Subject: [PATCH] Increasing permissionless threshold --- integration-tests/ccip-tests/actions/ccip_helpers.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/integration-tests/ccip-tests/actions/ccip_helpers.go b/integration-tests/ccip-tests/actions/ccip_helpers.go index 24329d8a57..1503d898b8 100644 --- a/integration-tests/ccip-tests/actions/ccip_helpers.go +++ b/integration-tests/ccip-tests/actions/ccip_helpers.go @@ -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" @@ -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,