File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
testnet/stacks-node/src/tests/signer Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1594,7 +1594,7 @@ pub fn wait_for_state_machine_update(
1594
1594
) => (burn_block, burn_block_height, current_miner.clone()),
1595
1595
(_, _) => continue,
1596
1596
};
1597
- if burn_block_height != expected_burn_block_height || & burn_block != expected_burn_block
1597
+ if burn_block_height != & expected_burn_block_height || burn_block != expected_burn_block
1598
1598
{
1599
1599
continue;
1600
1600
}
@@ -15049,7 +15049,7 @@ fn non_blocking_minority_configured_to_favour_prev_miner() {
15049
15049
15050
15050
let miner_2_block_n_2 =
15051
15051
wait_for_block_pushed_by_miner_key(30, stacks_height_before + 1, &miner_pk_2)
15052
- .expect("Miner 2's block N+1 was not mined");
15052
+ .expect("Miner 2's block N+2 was not mined");
15053
15053
let peer_info = miners.get_peer_info();
15054
15054
assert_eq!(peer_info.stacks_tip, miner_2_block_n_2.header.block_hash());
15055
15055
assert_eq!(peer_info.stacks_tip_height, stacks_height_before + 1);
@@ -15062,7 +15062,7 @@ fn non_blocking_minority_configured_to_favour_prev_miner() {
15062
15062
&miner_2_block_n_2.header.signer_signature_hash(),
15063
15063
&all_signers,
15064
15064
)
15065
- .expect("Failed to get expected acceptance for Miner 2's block N+1 .");
15065
+ .expect("Failed to get expected acceptance for Miner 2's block N+2 .");
15066
15066
15067
15067
info!("------------------------- Unpause Miner 1's Block Commits -------------------------");
15068
15068
miners.submit_commit_miner_1(&sortdb);
You can’t perform that action at this time.
0 commit comments