Skip to content

Commit 6211ffd

Browse files
committed
fix: make signer's warning log more accurate
This log can be hit in the case where a nakamoto block does not build off of the most recently signed nakamoto block, so the warning message should be less specific about the other case.
1 parent f160aaf commit 6211ffd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stacks-signer/src/chainstate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ impl SortitionsView {
438438
Ok(true)
439439
} else {
440440
warn!(
441-
"Miner block proposal's tenure change transaction does not confirm as many blocks as we expect in the parent tenure";
441+
"Miner's block proposal does not confirm as many blocks as we expect";
442442
"proposed_block_consensus_hash" => %block.header.consensus_hash,
443443
"proposed_block_signer_sighash" => %block.header.signer_signature_hash(),
444444
"proposed_chain_length" => block.header.chain_length,

0 commit comments

Comments
 (0)