Skip to content

Commit

Permalink
Allow null
Browse files Browse the repository at this point in the history
  • Loading branch information
vrtnd committed Sep 27, 2024
1 parent ded6b93 commit 1e6cdee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/runAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const handler = async (event: any) => {
const bridgesToRun = event.bridgeIndices.map((index: number) => bridgeNetworks[index]);
const promises = Promise.all(
bridgesToRun.map(async (bridge: BridgeNetwork) => {
return runAdapterToCurrentBlock(bridge, false, "ignore", event.lastRecordedBlocks);
return runAdapterToCurrentBlock(bridge, true, "ignore", event.lastRecordedBlocks);
})
);
await promises;
Expand Down

0 comments on commit 1e6cdee

Please sign in to comment.