Skip to content

Commit

Permalink
Increasing timeout. Messages are sent much faster so we need to wait …
Browse files Browse the repository at this point in the history
…longer for the exec.
  • Loading branch information
mateusz-sekara committed Dec 5, 2024
1 parent cd3d4fd commit 24654f1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions deployment/ccip/changeset/test_assertions.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,15 +270,17 @@ func ConfirmMultipleCommits(
errGrp := &errgroup.Group{}

for sourceDest, seqRange := range expectedSeqNums {
sourceDest := sourceDest
seqRange := seqRange
srcChain := sourceDest.SourceChainSelector
destChain := sourceDest.DestChainSelector

errGrp.Go(func() error {
_, err := ConfirmCommitWithExpectedSeqNumRange(
t,
chains[sourceDest.SourceChainSelector],
chains[sourceDest.DestChainSelector],
state[sourceDest.DestChainSelector].OffRamp,
startBlocks[sourceDest.DestChainSelector],
chains[srcChain],
chains[destChain],
state[destChain].OffRamp,
startBlocks[destChain],
seqRange,
enforceSingleCommit,
)
Expand Down

0 comments on commit 24654f1

Please sign in to comment.