You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: stacks-signer/src/chainstate.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -402,7 +402,7 @@ impl SortitionsView {
402
402
false,
403
403
);
404
404
let epoch_time = get_epoch_time_secs();
405
-
let enough_time_passed = epoch_time > extend_timestamp;
405
+
let enough_time_passed = epoch_time >= extend_timestamp;
406
406
if !changed_burn_view && !enough_time_passed {
407
407
warn!(
408
408
"Miner block proposal contains a tenure extend, but the burnchain view has not changed and enough time has not passed to refresh the block limit. Considering proposal invalid.";
0 commit comments