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 7a7549c commit c0da03eCopy full SHA for c0da03e
testnet/stacks-node/src/nakamoto_node/miner.rs
@@ -1160,7 +1160,7 @@ impl BlockMinerThread {
1160
if self.last_block_mined.is_some() {
1161
// Check if we can extend the current tenure
1162
let tenure_extend_timestamp = coordinator.get_tenure_extend_timestamp();
1163
- if get_epoch_time_secs() < tenure_extend_timestamp {
+ if get_epoch_time_secs() <= tenure_extend_timestamp {
1164
return Ok(NakamotoTenureInfo {
1165
coinbase_tx: None,
1166
tenure_change_tx: None,
0 commit comments