Skip to content

Commit

Permalink
Merge pull request #4894 from stacks-network/test/fix-integrations-06…
Browse files Browse the repository at this point in the history
…1824

Test: miner correctly sets bitvec to reward set length in naka_node now
  • Loading branch information
kantai authored Jun 18, 2024
2 parents d9e5b04 + 212fa51 commit 78359c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testnet/stacks-node/src/tests/nakamoto_integrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2309,7 +2309,7 @@ fn miner_writes_proposed_block_to_stackerdb() {
let signer_bitvec = BitVec::<4000>::consensus_deserialize(&mut signer_bitvec_bytes.as_slice())
.expect("Failed to deserialize signer bitvec");

assert_eq!(signer_bitvec.len(), 1);
assert_eq!(signer_bitvec.len(), 30);

assert_eq!(
format!("0x{}", observed_block.block_hash),
Expand Down

0 comments on commit 78359c6

Please sign in to comment.