From 8931860b2f35e55316860a5fc0affb264c447c61 Mon Sep 17 00:00:00 2001 From: Elena Frank Date: Fri, 19 Aug 2022 05:06:55 +0200 Subject: [PATCH] core/identity: Allow clippy::large-enum-variant on `Keypair` (#2827) --- core/src/identity.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/identity.rs b/core/src/identity.rs index ee431e7ee9c..a2b3943d0e9 100644 --- a/core/src/identity.rs +++ b/core/src/identity.rs @@ -64,6 +64,7 @@ use std::convert::{TryFrom, TryInto}; /// ``` /// #[derive(Debug, Clone)] +#[allow(clippy::large_enum_variant)] pub enum Keypair { /// An Ed25519 keypair. Ed25519(ed25519::Keypair),