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
let extend_timestamp = signer_db.calculate_tenure_extend_timestamp(
369
+
self.config.tenure_idle_timeout,
370
+
&sortition_consensus_hash,
371
+
);
372
+
let epoch_time = get_epoch_time_secs();
373
+
let enough_time_passed = epoch_time > extend_timestamp;
373
374
if !changed_burn_view && !enough_time_passed {
374
375
warn!(
375
376
"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