Address clippy lints.

This commit is contained in:
Sean Bowe 2022-06-08 08:44:31 -06:00 committed by Kris Nuttycombe
parent cc78bf755f
commit ec3d2e5dff
1 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,11 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or https://www.opensource.org/licenses/mit-license.php .
// This is added because `check_spend` takes several arguments over FFI. This
// annotation gets removed by the cxx procedural macro so it needs to be enabled
// on the entire module.
#![allow(clippy::too_many_arguments)]
use bellman::groth16::Proof;
use group::GroupEncoding;