Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions yarn-project/archiver/src/modules/l1_synchronizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,11 @@ export class ArchiverL1Synchronizer implements Traceable {
finalizedL1BlockNumber,
});
}
} catch (err) {
this.log.warn(`Failed to update finalized checkpoint: ${err}`);
} catch (err: any) {
// The rollup contract may not exist at the finalized L1 block right after deployment.
if (!err?.message?.includes('returned no data')) {
this.log.warn(`Failed to update finalized checkpoint: ${err}`);
}
}
}

Expand Down
Loading