We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5125eee commit 7bc44a0Copy full SHA for 7bc44a0
crates/chain-orchestrator/src/lib.rs
@@ -347,6 +347,7 @@ impl<
347
self.engine.update_fcs(Some(head), None, None).await?;
348
let tx = self.database.tx_mut().await?;
349
tx.purge_l1_message_to_l2_block_mappings(Some(head.number + 1)).await?;
350
+ tx.set_l2_head_block_number(head.number).await?;
351
tx.commit().await?;
352
self.notify(ChainOrchestratorEvent::FcsHeadUpdated(head));
353
let _ = sender.send(());
0 commit comments