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 6f498f8 commit 706806fCopy full SHA for 706806f
testnet/stacks-node/src/run_loop/nakamoto.rs
@@ -701,10 +701,17 @@ impl RunLoop {
701
702
// at tip, and not downloading. proceed to mine.
703
if last_tenure_sortition_height != sortition_db_height {
704
- info!(
705
- "Runloop: Synchronized full burnchain up to height {}. Proceeding to mine blocks",
706
- sortition_db_height
707
- );
+ if is_miner {
+ info!(
+ "Runloop: Synchronized full burnchain up to height {}. Proceeding to mine blocks",
+ sortition_db_height
708
+ );
709
+ } else {
710
711
+ "Runloop: Synchronized full burnchain up to height {}.",
712
713
714
+ }
715
last_tenure_sortition_height = sortition_db_height;
716
}
717
0 commit comments