Skip to content

Commit

Permalink
Fix length of test data.
Browse files Browse the repository at this point in the history
  • Loading branch information
lthibault committed Sep 13, 2024
1 parent 64ce106 commit 4e8cd4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qos_core/src/protocol/services/provision.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ mod test {
}

// 6) Add a bogus shard as the Kth shard
let bogus_share = &[69u8; 2349];
let bogus_share = &[69u8; 33];
let encrypted_bogus_share =
eph_pair.public_key().encrypt(bogus_share).unwrap();
let approval = approvals[threshold].clone();
Expand Down

0 comments on commit 4e8cd4c

Please sign in to comment.