File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
yarn-project/end-to-end/src/e2e_epochs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ export class EpochsTestContext {
305305 }
306306
307307 /** Waits until the given checkpoint number is mined. */
308- public async waitUntilCheckpointNumber ( target : CheckpointNumber , timeout = 60 ) {
308+ public async waitUntilCheckpointNumber ( target : CheckpointNumber , timeout = 120 ) {
309309 await retryUntil (
310310 ( ) => Promise . resolve ( target <= this . monitor . checkpointNumber ) ,
311311 `Wait until checkpoint ${ target } ` ,
@@ -315,7 +315,7 @@ export class EpochsTestContext {
315315 }
316316
317317 /** Waits until the given checkpoint number is marked as proven. */
318- public async waitUntilProvenCheckpointNumber ( target : CheckpointNumber , timeout = 60 ) {
318+ public async waitUntilProvenCheckpointNumber ( target : CheckpointNumber , timeout = 120 ) {
319319 await retryUntil (
320320 ( ) => Promise . resolve ( target <= this . monitor . provenCheckpointNumber ) ,
321321 `Wait proven checkpoint ${ target } ` ,
You can’t perform that action at this time.
0 commit comments