Skip to content

Commit 96bd346

Browse files
committed
chore: remove log and clarify test logs
1 parent 99b8413 commit 96bd346

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

testnet/stacks-node/src/nakamoto_node/signer_coordinator.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,6 @@ impl SignerCoordinator {
391391
SortitionDB::get_canonical_stacks_chain_tip_hash(sortdb.conn()).unwrap();
392392
let canonical_stacks_tip =
393393
StacksBlockId::new(&canonical_stacks_tip_ch, &canonical_stacks_tip_bh);
394-
info!("SignCoordinator: Current stacks tip: {canonical_stacks_tip}, parent: {parent_block_id}");
395394
if canonical_stacks_tip != parent_block_id {
396395
debug!("SignCoordinator: Exiting due to new stacks tip");
397396
return Err(NakamotoNodeError::StacksTipChanged);

testnet/stacks-node/src/tests/signer/v0.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13140,6 +13140,7 @@ fn interrupt_miner_on_new_stacks_tip() {
1314013140
signer_test
1314113141
.wait_for_block_acceptance(30, &block_n.signer_signature_hash, &all_signers)
1314213142
.expect("Timed out waiting for block acceptance of N");
13143+
info!("Block N is {}", block_n.stacks_height);
1314313144

1314413145
info!("------------------------- RL2 Wins Sortition -------------------------");
1314513146
let rl2_commits_before = commits_submitted_rl2.load(Ordering::SeqCst);
@@ -13225,7 +13226,7 @@ fn interrupt_miner_on_new_stacks_tip() {
1322513226
};
1322613227
Ok(chain_info_2.stacks_tip_height == block_n.stacks_height + 1)
1322713228
})
13228-
.expect("Timed out waiting for RL2 to advance to block N");
13229+
.expect("Timed out waiting for RL2 to advance to block N+1");
1322913230

1323013231
info!("------------------------- Next Tenure Builds on N+1 -------------------------");
1323113232

0 commit comments

Comments
 (0)