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 7ead5fc commit ed33c4fCopy full SHA for ed33c4f
testnet/stacks-node/src/tests/signer/v0.rs
@@ -1645,11 +1645,11 @@ fn multiple_miners() {
1645
assert_eq!(peer_1_height, peer_2_height);
1646
assert_eq!(
1647
peer_1_height,
1648
- pre_nakamoto_peer_1_height + btc_blocks_mined - 1
+ pre_nakamoto_peer_1_height + btc_blocks_mined as u64 - 1
1649
);
1650
1651
btc_blocks_mined,
1652
- u64::try_from(miner_1_tenures + miner_2_tenures).unwrap()
+ u32::try_from(miner_1_tenures + miner_2_tenures).unwrap()
1653
1654
1655
rl2_coord_channels
0 commit comments