Skip to content

Commit 0481b0f

Browse files
authored
fix!: update noir_check_shuffle to v.0.2.1 (#24)
1 parent 153fb72 commit 0481b0f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ authors = [""]
55
compiler_version = ">=0.36.0"
66

77
[dependencies]
8-
check_shuffle = {tag = "v0.2.0", git = "https://github.com/noir-lang/noir_check_shuffle"}
8+
check_shuffle = {tag = "v0.2.1", git = "https://github.com/noir-lang/noir_check_shuffle"}

src/lib.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ where
8181

8282
pub struct SortResult<T, let N: u32> {
8383
pub sorted: [T; N],
84-
pub sort_indices: [Field; N],
84+
pub sort_indices: [u32; N],
8585
}
8686

8787
pub fn sort_advanced<T, let N: u32>(

0 commit comments

Comments
 (0)