From 1e9e2220a842017e5468d8bca00d3cfca27c1f82 Mon Sep 17 00:00:00 2001 From: Gabriel Barreto Date: Wed, 3 Jan 2024 15:49:21 -0300 Subject: [PATCH] Fix poseidon.rs --- src/poseidon.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/poseidon.rs b/src/poseidon.rs index 035e3263..1b420254 100644 --- a/src/poseidon.rs +++ b/src/poseidon.rs @@ -20,9 +20,9 @@ use typenum::marker_traits::Unsigned; use typenum::*; /// Available arities for the Poseidon hasher. -pub trait Arity: ArrayLength { +pub trait Arity: ArrayLength { /// Must be Arity + 1. - type ConstantsSize: ArrayLength; + type ConstantsSize: ArrayLength; fn tag() -> T; }