Skip to content

Commit f69b675

Browse files
committed
Process relay blocks if sync rate rule is triggered
1 parent 535ec03 commit f69b675

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

protocol/flows/src/flow_context.rs

+5
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,11 @@ impl FlowContext {
635635
self.mining_rule_engine.is_nearly_synced(sink_daa_score_and_timestamp)
636636
}
637637

638+
pub async fn should_mine(&self, session: &ConsensusSessionOwned) -> bool {
639+
let sink_daa_score_and_timestamp = session.async_get_sink_daa_score_timestamp().await;
640+
self.mining_rule_engine.should_mine(sink_daa_score_and_timestamp)
641+
}
642+
638643
/// Notifies that the UTXO set was reset due to pruning point change via IBD.
639644
pub fn on_pruning_point_utxoset_override(&self) {
640645
// Notifications from the flow context might be ignored if the inner channel is already closing

protocol/flows/src/v5/blockrelay/flow.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ impl HandleRelayInvsFlow {
116116
}
117117
}
118118

119-
if self.ctx.is_ibd_running() && !self.ctx.is_nearly_synced(&session).await {
119+
if self.ctx.is_ibd_running() && !self.ctx.should_mine(&session).await {
120120
// Note: If the node is considered nearly synced we continue processing relay blocks even though an IBD is in progress.
121121
// For instance this means that downloading a side-chain from a delayed node does not interop the normal flow of live blocks.
122122
debug!("Got relay block {} while in IBD and the node is out of sync, continuing...", inv.hash);

0 commit comments

Comments
 (0)