From ad230b5b8c0c87c2b05be3a476fae93d9f6dc7bb Mon Sep 17 00:00:00 2001 From: librelois <c@elo.tf> Date: Thu, 20 Jan 2022 23:20:01 +0100 Subject: [PATCH] clippy --- pallets/identity/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/identity/src/lib.rs b/pallets/identity/src/lib.rs index e3223dd90..73bbeb3b4 100644 --- a/pallets/identity/src/lib.rs +++ b/pallets/identity/src/lib.rs @@ -337,7 +337,7 @@ pub mod pallet { let name = idty_value.name.clone(); <Identities<T>>::insert(idty_index, idty_value); - Self::deposit_event(Event::IdtyValidated(name.clone())); + Self::deposit_event(Event::IdtyValidated(name)); T::OnIdtyChange::on_idty_change(idty_index, IdtyEvent::Validated); Ok(().into()) } -- GitLab