From eb7d18da2e8f17ea3d67f47ad3f43812829de824 Mon Sep 17 00:00:00 2001 From: Dmitry Vagner Date: Thu, 19 Jan 2023 00:59:51 +0700 Subject: [PATCH] fix clippy --- evm/src/bn254_arithmetic.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/evm/src/bn254_arithmetic.rs b/evm/src/bn254_arithmetic.rs index ccb2f32f..ccea512c 100644 --- a/evm/src/bn254_arithmetic.rs +++ b/evm/src/bn254_arithmetic.rs @@ -47,6 +47,7 @@ impl Sub for Fp { } } +#[allow(clippy::suspicious_arithmetic_impl)] impl Mul for Fp { type Output = Self;