Skip to content

Commit

Permalink
Correct construction of signature_participants in serai-client tests
Browse files Browse the repository at this point in the history
Fault identified by akil.
  • Loading branch information
kayabaNerve committed Aug 12, 2024
1 parent 470b5f7 commit 756db82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion substrate/client/tests/common/validator_sets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub async fn set_keys(
&SeraiValidatorSets::set_keys(
set.network,
key_pair.clone(),
vec![1; musig_keys.len()].try_into().unwrap(),
bitvec::bitvec!(u8, bitvec::prelude::Lsb0; 1; musig_keys.len()),
Signature(sig.to_bytes()),
),
)
Expand Down

0 comments on commit 756db82

Please sign in to comment.