git.delta.rocks / unique-network / refs/commits / e2ee5ffc10f8

difftreelog

style fix formatting

Yaroslav Bolyukin2023-11-17parent: #c1585fd.patch.diff
in: master

4 files changed

modifiedruntime/common/config/substrate.rsdiffbeforeafterboth
17use frame_support::{17use frame_support::{
18 dispatch::DispatchClass,18 dispatch::DispatchClass,
19 ord_parameter_types, parameter_types,19 ord_parameter_types, parameter_types,
20 traits::{ConstBool, ConstU32, ConstU64, Everything, NeverEnsureOrigin, tokens::{PayFromAccount, UnityAssetBalanceConversion}},20 traits::{
21 tokens::{PayFromAccount, UnityAssetBalanceConversion},
22 ConstBool, ConstU32, ConstU64, Everything, NeverEnsureOrigin,
23 },
21 weights::{24 weights::{
3942
40use crate::{43use crate::{
41 runtime_common::DealWithFees, Balances, Block, OriginCaller, PalletInfo, Runtime, RuntimeCall,44 runtime_common::DealWithFees, Balances, Block, OriginCaller, PalletInfo, Runtime, RuntimeCall,
42 RuntimeEvent, RuntimeHoldReason, RuntimeFreezeReason, RuntimeOrigin, SS58Prefix, System, Version, Treasury,45 RuntimeEvent, RuntimeFreezeReason, RuntimeHoldReason, RuntimeOrigin, SS58Prefix, System,
46 Treasury, Version,
43};47};
4448
45parameter_types! {49parameter_types! {
modifiedruntime/common/config/xcm/foreignassets.rsdiffbeforeafterboth

no syntactic changes

modifiedruntime/common/config/xcm/mod.rsdiffbeforeafterboth
14// You should have received a copy of the GNU General Public License14// You should have received a copy of the GNU General Public License
15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
1616
17use cumulus_primitives_core::ParaId;
17use frame_support::{18use frame_support::{
18 parameter_types,19 parameter_types,
19 traits::{ConstU32, Contains, Everything, Get, Nothing, ProcessMessageError},20 traits::{ConstU32, Contains, Everything, Get, Nothing, ProcessMessageError},
20};21};
21use frame_system::EnsureRoot;22use frame_system::EnsureRoot;
22use pallet_xcm::XcmPassthrough;23use pallet_xcm::XcmPassthrough;
23use polkadot_parachain_primitives::primitives::Sibling;24use polkadot_parachain_primitives::primitives::Sibling;
25use polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery;
24use sp_std::marker::PhantomData;26use sp_std::marker::PhantomData;
25use staging_xcm::{27use staging_xcm::{
26 latest::{prelude::*, MultiLocation, Weight},28 latest::{prelude::*, MultiLocation, Weight},
36 XcmExecutor,38 XcmExecutor,
37};39};
38use up_common::types::AccountId;40use up_common::types::AccountId;
39use cumulus_primitives_core::ParaId;
40use polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery;
4141
42use crate::{42use crate::{
43 xcm_barrier::Barrier, AllPalletsWithSystem, Balances, ParachainInfo, ParachainSystem,43 xcm_barrier::Barrier, AllPalletsWithSystem, Balances, ParachainInfo, ParachainSystem,
modifiedruntime/common/mod.rsdiffbeforeafterboth
4545
46use crate::{46use crate::{AllPalletsWithSystem, Aura, Balances, Runtime, RuntimeCall, Signature, Treasury};
47 AllPalletsWithSystem, Aura, Balances, Runtime, RuntimeCall, Signature,
48 Treasury,
49};
5047
51#[macro_export]48#[macro_export]