From c097c75cc882fcd11d4d6fbbbf8bca6c69e142b1 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Tue, 17 Oct 2023 22:53:56 +0000 Subject: [PATCH] style: fix clippy warning --- --- a/pallets/nonfungible/src/lib.rs +++ b/pallets/nonfungible/src/lib.rs @@ -1225,7 +1225,7 @@ nesting_budget, )? { // Pass, token existence and ouroboros checks are done in `check_indirectly_owned` - } else if nesting.collection_admin && handle.is_owner_or_admin(&sender) { + } else if nesting.collection_admin && handle.is_owner_or_admin(sender) { // token existence and ouroboros checks are done in `get_checked_topmost_owner` let _ = >::get_checked_topmost_owner( handle.id, -- gitstuff