From d3518f3dd51027158101ee2b8c87c683413d8571 Mon Sep 17 00:00:00 2001 From: elenaf9 Date: Thu, 18 Aug 2022 20:40:28 +0200 Subject: [PATCH] core/identity: fix clippy::large-enum-variant --- 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),