ensure secondary rocksdb instance has caught up to the primary instance (#9346)

Co-authored-by: Arya <aryasolhi@gmail.com>
This commit is contained in:
Alfredo Garcia 2025-03-30 19:53:30 +03:00 committed by GitHub
parent 949326258a
commit da6c218afb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -150,6 +150,14 @@ impl TrustedChainSync {
}
};
// # Correctness
//
// Ensure that the secondary rocksdb instance has caught up to the primary instance
// before attempting to commit the new block to the non-finalized state. It is sufficient
// to call this once here, as a new chain tip block has already been retrieved and so
// we know that the primary rocksdb instance has already been updated.
self.try_catch_up_with_primary().await;
let block_hash = block.hash;
let commit_result = if self.non_finalized_state.chain_count() == 0 {
self.non_finalized_state