Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ let alice_mask: [bool; N];
let bob_mask: [bool; N];

let alice_data_to_bob: [Field];
let bob_data_to_alice; [Field];
let bob_data_to_alice: [Field];

for i in 0..N {
if (bob_mask[i] == true)
Expand Down Expand Up @@ -321,4 +321,4 @@ fn test_poker_5players() {
assert_eq(uniqueness_check[river_indices[0]], false);
uniqueness_check[river_indices[0]] = true;
}
```
```
Loading