From 2dfe702478f9bcc865759202b1155b3ef4e20e35 Mon Sep 17 00:00:00 2001 From: salman01zp Date: Tue, 14 Nov 2023 22:30:44 +0530 Subject: [PATCH] cargo fmt --all --- standalone/runtime/src/lib.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/standalone/runtime/src/lib.rs b/standalone/runtime/src/lib.rs index 82616bf14..887db12f4 100644 --- a/standalone/runtime/src/lib.rs +++ b/standalone/runtime/src/lib.rs @@ -1113,12 +1113,10 @@ impl Contains for BaseFilter { } // no withdraw_unbonded call - let is_stake_withdraw_call = matches!( - call, - RuntimeCall::Staking(pallet_staking::Call::withdraw_unbonded { .. }) - ); + let is_stake_withdraw_call = + matches!(call, RuntimeCall::Staking(pallet_staking::Call::withdraw_unbonded { .. })); - if is_stake_withdraw_call{ + if is_stake_withdraw_call { return false }