git.delta.rocks / unique-network / refs/commits / 34387ce618ee

difftreelog

style fix fmt warnings

Yaroslav Bolyukin2021-09-08parent: #97991ee.patch.diff
in: master

3 files changed

modifiedcrates/evm-coder/tests/a.rsdiffbeforeafterboth
22
3use evm_coder::{solidity_interface, types::*, ToLog, execution::Result};3use evm_coder::{solidity_interface, types::*, ToLog, execution::Result};
4use evm_coder_macros::solidity;4use evm_coder_macros::solidity;
5use std as sp_std;
65
7struct Impls;6struct Impls;
87
modifiedpallets/scheduler/src/lib.rsdiffbeforeafterboth
794 use super::*;794 use super::*;
795795
796 use frame_support::{796 use frame_support::{
797 parameter_types, assert_ok, ord_parameter_types, assert_noop, assert_err, Hashable,797 Hashable, assert_err, assert_noop, assert_ok, ord_parameter_types, parameter_types,
798 traits::{OnInitialize, OnFinalize, Filter},798 traits::{Contains, Filter, OnFinalize, OnInitialize},
799 weights::constants::RocksDbWeight,799 weights::constants::RocksDbWeight,
800 };800 };
801 use sp_core::H256;801 use sp_core::H256;
modifiedruntime/src/lib.rsdiffbeforeafterboth
54 WeightToFeePolynomial, WeightToFeeCoefficient, WeightToFeeCoefficients,54 WeightToFeePolynomial, WeightToFeeCoefficient, WeightToFeeCoefficients,
55 },55 },
56};56};
57use xcm_executor::traits::InvertLocation;
58use nft_data_structs::*;57use nft_data_structs::*;
59// use pallet_contracts::weights::WeightInfo;58// use pallet_contracts::weights::WeightInfo;
60// #[cfg(any(feature = "std", test))]59// #[cfg(any(feature = "std", test))]
80// Polkadot imports79// Polkadot imports
81use pallet_xcm::XcmPassthrough;80use pallet_xcm::XcmPassthrough;
82use polkadot_parachain::primitives::Sibling;81use polkadot_parachain::primitives::Sibling;
83use xcm::v0::Xcm;
84use xcm::v0::{BodyId, Junction::*, MultiAsset, MultiLocation, MultiLocation::*, NetworkId};82use xcm::v0::{BodyId, Junction::*, MultiLocation, MultiLocation::*, NetworkId};
85use xcm_builder::{83use xcm_builder::{
86 AccountId32Aliases, AllowTopLevelPaidExecutionFrom, AllowUnpaidExecutionFrom, CurrencyAdapter,84 AccountId32Aliases, AllowTopLevelPaidExecutionFrom, AllowUnpaidExecutionFrom, CurrencyAdapter,
87 EnsureXcmOrigin, FixedWeightBounds, IsConcrete, LocationInverter, NativeAsset,85 EnsureXcmOrigin, FixedWeightBounds, IsConcrete, LocationInverter, NativeAsset,