File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -635,6 +635,11 @@ impl FlowContext {
635
635
self . mining_rule_engine . is_nearly_synced ( sink_daa_score_and_timestamp)
636
636
}
637
637
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
+
638
643
/// Notifies that the UTXO set was reset due to pruning point change via IBD.
639
644
pub fn on_pruning_point_utxoset_override ( & self ) {
640
645
// Notifications from the flow context might be ignored if the inner channel is already closing
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ impl HandleRelayInvsFlow {
116
116
}
117
117
}
118
118
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 {
120
120
// Note: If the node is considered nearly synced we continue processing relay blocks even though an IBD is in progress.
121
121
// For instance this means that downloading a side-chain from a delayed node does not interop the normal flow of live blocks.
122
122
debug ! ( "Got relay block {} while in IBD and the node is out of sync, continuing..." , inv. hash) ;
You can’t perform that action at this time.
0 commit comments