From 278a2699c682f54dd0739e5944a66dc998a85e4b Mon Sep 17 00:00:00 2001 From: Fahrrader Date: Wed, 08 Jun 2022 13:01:18 +0000 Subject: [PATCH] style: cargo fmt --- --- a/pallets/common/src/dispatch.rs +++ b/pallets/common/src/dispatch.rs @@ -36,13 +36,15 @@ }, error, })?; - handle.check_is_internal().map_err(|error| DispatchErrorWithPostInfo { - post_info: PostDispatchInfo { - actual_weight: Some(dispatch_weight::()), - pays_fee: Pays::Yes, - }, - error, - })?; + handle + .check_is_internal() + .map_err(|error| DispatchErrorWithPostInfo { + post_info: PostDispatchInfo { + actual_weight: Some(dispatch_weight::()), + pays_fee: Pays::Yes, + }, + error, + })?; let dispatched = T::CollectionDispatch::dispatch(handle); let mut result = call(dispatched.as_dyn()); match &mut result { -- gitstuff