From 1bc521432830510dfe6cb6c9e51b255fd9b4be09 Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Mon, 24 Jun 2024 19:29:17 +0100 Subject: [PATCH] Update noir_stdlib/src/hash.nr --- noir_stdlib/src/hash.nr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noir_stdlib/src/hash.nr b/noir_stdlib/src/hash.nr index 6bff2fb4619..62b47b67241 100644 --- a/noir_stdlib/src/hash.nr +++ b/noir_stdlib/src/hash.nr @@ -82,7 +82,7 @@ fn pedersen_hash_with_separator_noir(input: [Field; N], separator: u32) -> Fi pub fn pedersen_hash_with_separator(input: [Field; N], separator: u32) -> Field {} #[foreign(pedersen_commitment)] -pub fn __pedersen_commitment_with_separator(input: [Field; N], separator: u32) -> [Field; 2] {} +fn __pedersen_commitment_with_separator(input: [Field; N], separator: u32) -> [Field; 2] {} pub fn hash_to_field(inputs: [Field]) -> Field { let mut sum = 0;