@@ -480,7 +480,7 @@ NOTE: This error usually indicates an RPC conversion error between the node and
480
480
mempool_size : self . mining_manager . transaction_count_sample ( TransactionQuery :: TransactionsOnly ) ,
481
481
server_version : version ( ) . to_string ( ) ,
482
482
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) ,
484
484
has_notify_command : true ,
485
485
has_message_id : true ,
486
486
} )
@@ -1145,7 +1145,7 @@ NOTE: This error usually indicates an RPC conversion error between the node and
1145
1145
) -> RpcResult < GetServerInfoResponse > {
1146
1146
let session = self . consensus_manager . consensus ( ) . unguarded_session ( ) ;
1147
1147
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) ;
1149
1149
let virtual_daa_score = session. get_virtual_daa_score ( ) ;
1150
1150
1151
1151
Ok ( GetServerInfoResponse {
@@ -1166,7 +1166,7 @@ NOTE: This error usually indicates an RPC conversion error between the node and
1166
1166
) -> RpcResult < GetSyncStatusResponse > {
1167
1167
let sink_daa_score_timestamp =
1168
1168
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) ;
1170
1170
Ok ( GetSyncStatusResponse { is_synced } )
1171
1171
}
1172
1172
0 commit comments