We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d734345 commit 6e0eca6Copy full SHA for 6e0eca6
testnet/stacks-node/src/nakamoto_node/miner.rs
@@ -393,15 +393,14 @@ impl BlockMinerThread {
393
} else {
394
self.config.miner.first_rejection_pause_ms
395
};
396
- thread::sleep(Duration::from_millis(pause_ms));
397
- last_block_rejected = true;
398
399
error!("Error while gathering signatures: {e:?}. Will try mining again in {pause_ms}.";
400
"signer_sighash" => %new_block.header.signer_signature_hash(),
401
"block_height" => new_block.header.chain_length,
402
"consensus_hash" => %new_block.header.consensus_hash,
403
);
404
-
+ thread::sleep(Duration::from_millis(pause_ms));
+ last_block_rejected = true;
405
continue;
406
}
407
},
0 commit comments