We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ce4a74 commit 7416130Copy full SHA for 7416130
servers/src/mining/stratumserver.rs
@@ -596,9 +596,7 @@ impl Handler {
596
// Build a new block if there is at least one worker and
597
// There is a new block on the chain or its time to rebuild
598
// the current one to include new transactions
599
- if (current_hash != latest_hash || Utc::now().timestamp() >= deadline)
600
- && self.workers.count() > 0
601
- {
+ if current_hash != latest_hash || Utc::now().timestamp() >= deadline {
602
{
603
debug!("resend updated block");
604
let wallet_listener_url = if !config.burn_reward {
0 commit comments