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 055fbb5 commit f3a47faCopy full SHA for f3a47fa
crates/cfxcore/core/src/consensus/consensus_inner/consensus_executor/mod.rs
@@ -505,7 +505,13 @@ impl ConsensusExecutor {
505
// the lock, there might be a checkpoint coming in to break
506
// index
507
for state_block_hash in waiting_blocks {
508
- self.wait_for_result(state_block_hash)?;
+ let commitment = self.wait_for_result(state_block_hash)?;
509
+ self.handler.data_man.insert_epoch_execution_commitment(
510
+ state_block_hash,
511
+ commitment.state_root_with_aux_info,
512
+ commitment.receipts_root,
513
+ commitment.logs_bloom_hash,
514
+ );
515
}
516
// Now we need to wait for the execution information of all missing
517
// blocks to come back
0 commit comments