From 0c47255eb09771b981cd26a26ffa718c78a46f36 Mon Sep 17 00:00:00 2001 From: benesjan Date: Mon, 22 Apr 2024 08:17:44 +0000 Subject: [PATCH] cleanup --- noir-projects/noir-protocol-circuits/crates/types/src/hash.nr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noir-projects/noir-protocol-circuits/crates/types/src/hash.nr b/noir-projects/noir-protocol-circuits/crates/types/src/hash.nr index 1adddd4934c4..ef7bc7f62bd0 100644 --- a/noir-projects/noir-protocol-circuits/crates/types/src/hash.nr +++ b/noir-projects/noir-protocol-circuits/crates/types/src/hash.nr @@ -13,7 +13,7 @@ use crate::constants::{ use crate::traits::Hash; use crate::messaging::l2_to_l1_message::L2ToL1Message; use crate::merkle_tree::root::root_from_sibling_path; -use dep::std::hash::{pedersen_hash_with_separator, poseidon2::Poseidon2::hash, sha256}; +use dep::std::hash::{pedersen_hash_with_separator, sha256}; pub fn sha256_to_field(bytes_to_hash: [u8; N]) -> Field { let sha256_hashed = sha256(bytes_to_hash);