From 16e17ef849e1741785e614fbaec0452754390662 Mon Sep 17 00:00:00 2001 From: Ayush Kumar Mishra Date: Sun, 5 Jan 2025 21:50:38 +0530 Subject: [PATCH] refactoring --- pallets/ddc-verification/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pallets/ddc-verification/src/lib.rs b/pallets/ddc-verification/src/lib.rs index f2c208c5a..c34903660 100644 --- a/pallets/ddc-verification/src/lib.rs +++ b/pallets/ddc-verification/src/lib.rs @@ -4229,8 +4229,7 @@ pub mod pallet { .map(|(_, k)| T::AccountId::decode(&mut &k.into().encode()[..]).unwrap()) .collect::>(); - ValidatorSet::::put(validators); // only active validators in session - this is NOT all the - // validators + ValidatorSet::::put(validators); // only active validators in session - this is NOT all the validators } #[allow(clippy::multiple_bound_locations)]