From e9340e59415436dcf4c5f3eb3c18098a7b67421c Mon Sep 17 00:00:00 2001 From: Igor Kozyrev Date: Thu, 02 Dec 2021 21:15:07 +0000 Subject: [PATCH] fix: wrong event --- --- a/pallets/unique/src/lib.rs +++ b/pallets/unique/src/lib.rs @@ -600,7 +600,7 @@ let sender = T::CrossAccountId::from_sub(ensure_signed(origin)?); let collection = >::try_get(collection_id)?; - >::deposit_event(Event::::CollectionAdminAdded( + >::deposit_event(Event::::CollectionAdminRemoved( collection_id, account_id.clone() )); -- gitstuff