Skip to content

Commit f2311b6

Browse files
committed
Update is_synced for non-mining context
- Make it not depend on sync rate rule
1 parent 186f606 commit f2311b6

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

protocol/mining/src/rule_engine.rs

+6
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,12 @@ impl MiningRuleEngine {
114114
is_nearly_synced || self.use_sync_rate_rule.load(std::sync::atomic::Ordering::Relaxed)
115115
}
116116

117+
/// In non-mining contexts, we consider the node synced if the sink is recent and it is connected
118+
/// to a peer
119+
pub fn is_sink_recent_and_connected(&self, sink_daa_score_timestamp: DaaScoreTimestamp) -> bool {
120+
return self.has_sufficient_peer_connectivity() && self.is_nearly_synced(sink_daa_score_timestamp);
121+
}
122+
117123
/// Returns whether the sink timestamp is recent enough and the node is considered synced or nearly synced.
118124
///
119125
/// This info is used to determine if it's ok to use a block template from this node for mining purposes.

rpc/service/src/service.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ NOTE: This error usually indicates an RPC conversion error between the node and
480480
mempool_size: self.mining_manager.transaction_count_sample(TransactionQuery::TransactionsOnly),
481481
server_version: version().to_string(),
482482
is_utxo_indexed: self.config.utxoindex,
483-
is_synced: self.mining_rule_engine.should_mine(sink_daa_score_timestamp),
483+
is_synced: self.mining_rule_engine.is_sink_recent_and_connected(sink_daa_score_timestamp),
484484
has_notify_command: true,
485485
has_message_id: true,
486486
})
@@ -1145,7 +1145,7 @@ NOTE: This error usually indicates an RPC conversion error between the node and
11451145
) -> RpcResult<GetServerInfoResponse> {
11461146
let session = self.consensus_manager.consensus().unguarded_session();
11471147
let sink_daa_score_timestamp = session.async_get_sink_daa_score_timestamp().await;
1148-
let is_synced: bool = self.mining_rule_engine.should_mine(sink_daa_score_timestamp);
1148+
let is_synced: bool = self.mining_rule_engine.is_sink_recent_and_connected(sink_daa_score_timestamp);
11491149
let virtual_daa_score = session.get_virtual_daa_score();
11501150

11511151
Ok(GetServerInfoResponse {
@@ -1166,7 +1166,7 @@ NOTE: This error usually indicates an RPC conversion error between the node and
11661166
) -> RpcResult<GetSyncStatusResponse> {
11671167
let sink_daa_score_timestamp =
11681168
self.consensus_manager.consensus().unguarded_session().async_get_sink_daa_score_timestamp().await;
1169-
let is_synced: bool = self.mining_rule_engine.should_mine(sink_daa_score_timestamp);
1169+
let is_synced: bool = self.mining_rule_engine.is_sink_recent_and_connected(sink_daa_score_timestamp);
11701170
Ok(GetSyncStatusResponse { is_synced })
11711171
}
11721172

0 commit comments

Comments
 (0)