Merge branch 'arjentix/fix-sequencer-msg-id' into Pravdyvy/indexer-state-management

This commit is contained in:
Pravdyvy 2026-02-13 17:42:29 +02:00
commit 97502f3baa

View File

@ -174,8 +174,11 @@ async fn retry_pending_blocks_loop(
(pending_blocks, client)
};
info!("Resubmitting {} pending blocks", pending_blocks.len());
for block in &pending_blocks {
if let Some(block) = pending_blocks.first() {
info!(
"Resubmitting pending block with id {}",
block.header.block_id
);
// TODO: We could cache the inscribe tx for each pending block to avoid re-creating it
// on every retry.
let (tx, _msg_id) = block_settlement_client