From ec6ce248bb21867f2a945aca3543d35290e48cdc Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Fri, 17 Nov 2023 10:32:14 +0000 Subject: [PATCH] style: fix formatting --- --- a/runtime/common/tests/xcm.rs +++ b/runtime/common/tests/xcm.rs @@ -37,10 +37,12 @@ Box::new(VersionedXcm::from(Xcm(vec![Transact { origin_kind: OriginKind::Native, require_weight_at_most: Weight::from_parts(1000, 1000), - call: RuntimeCall::Balances(pallet_balances::Call::::transfer_keep_alive { - dest: BOB.into(), - value: INITIAL_BALANCE / 2, - }) + call: RuntimeCall::Balances( + pallet_balances::Call::::transfer_keep_alive { + dest: BOB.into(), + value: INITIAL_BALANCE / 2, + }, + ) .encode() .into(), }]))), -- gitstuff