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 62f5a6a commit c8d8743Copy full SHA for c8d8743
testnet/stacks-node/src/tests/nakamoto_integrations.rs
@@ -391,7 +391,8 @@ pub fn get_latest_block_proposal(
391
let message: SignerMessageV0 =
392
miners_stackerdb.get_latest(miner_slot_id.start).ok()??;
393
let SignerMessageV0::BlockProposal(block_proposal) = message else {
394
- panic!("Expected a signer message block proposal. Got {message:?}");
+ warn!("Expected a block proposal. Got {message:?}");
395
+ return None;
396
};
397
block_proposal.block
398
0 commit comments