Skip to content

Commit 01937ec

Browse files
committed
Fix build error
Signed-off-by: Jacinta Ferrant <[email protected]>
1 parent c504a33 commit 01937ec

File tree

1 file changed

+3
-3
lines changed
  • testnet/stacks-node/src/tests/signer

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,7 +1594,7 @@ pub fn wait_for_state_machine_update(
15941594
) => (burn_block, burn_block_height, current_miner.clone()),
15951595
(_, _) => continue,
15961596
};
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
15981598
{
15991599
continue;
16001600
}
@@ -15049,7 +15049,7 @@ fn non_blocking_minority_configured_to_favour_prev_miner() {
1504915049

1505015050
let miner_2_block_n_2 =
1505115051
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");
1505315053
let peer_info = miners.get_peer_info();
1505415054
assert_eq!(peer_info.stacks_tip, miner_2_block_n_2.header.block_hash());
1505515055
assert_eq!(peer_info.stacks_tip_height, stacks_height_before + 1);
@@ -15062,7 +15062,7 @@ fn non_blocking_minority_configured_to_favour_prev_miner() {
1506215062
&miner_2_block_n_2.header.signer_signature_hash(),
1506315063
&all_signers,
1506415064
)
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.");
1506615066

1506715067
info!("------------------------- Unpause Miner 1's Block Commits -------------------------");
1506815068
miners.submit_commit_miner_1(&sortdb);

0 commit comments

Comments
 (0)