Skip to content

Commit f2ac204

Browse files
vklachkovxlc
authored andcommitted
fixes after update
1 parent 6373120 commit f2ac204

File tree

35 files changed

+71
-69
lines changed

35 files changed

+71
-69
lines changed

asset-registry/src/impls.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use sp_std::prelude::*;
1515
use xcm::VersionedLocation;
1616
use xcm::{
1717
v3,
18-
v4::{prelude::*, Weight as XcmWeight},
18+
v5::{prelude::*, Weight as XcmWeight},
1919
};
2020
use xcm_builder::TakeRevenue;
2121
use xcm_executor::{traits::WeightTrader, AssetsInHolding};
@@ -188,7 +188,7 @@ impl<T: Config> Inspect for Pallet<T> {
188188
type StringLimit = T::StringLimit;
189189

190190
fn asset_id(location: &Location) -> Option<Self::AssetId> {
191-
Pallet::<T>::location_to_asset_id(v3::Location::try_from(location.clone()).ok()?)
191+
Pallet::<T>::location_to_asset_id(v3::Location::try_from(location.clone().into_versioned()).ok()?)
192192
}
193193

194194
fn metadata(id: &Self::AssetId) -> Option<AssetMetadata<Self::Balance, Self::CustomMetadata, Self::StringLimit>> {
@@ -198,11 +198,11 @@ impl<T: Config> Inspect for Pallet<T> {
198198
fn metadata_by_location(
199199
location: &Location,
200200
) -> Option<AssetMetadata<Self::Balance, Self::CustomMetadata, Self::StringLimit>> {
201-
Pallet::<T>::fetch_metadata_by_location(&v3::Location::try_from(location.clone()).ok()?)
201+
Pallet::<T>::fetch_metadata_by_location(&v3::Location::try_from(location.clone().into_versioned()).ok()?)
202202
}
203203

204204
fn location(asset_id: &Self::AssetId) -> Result<Option<Location>, DispatchError> {
205-
Pallet::<T>::location(asset_id).map(|l| l.and_then(|l| l.try_into().ok()))
205+
Pallet::<T>::location(asset_id).map(|l| l.and_then(|l| l.into_versioned().try_into().ok()))
206206
}
207207
}
208208

asset-registry/src/mock/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use sp_io::TestExternalities;
1010
use sp_runtime::{traits::Convert, AccountId32, BuildStorage};
1111
use xcm::{
1212
v3,
13-
v4::{Asset, Location},
13+
v5::{Asset, Location},
1414
};
1515
use xcm_simulator::{decl_test_network, decl_test_parachain, decl_test_relay_chain, TestExt};
1616

@@ -109,12 +109,12 @@ impl Convert<CurrencyId, Option<Location>> for CurrencyIdConvert {
109109
),
110110
CurrencyId::RegisteredAsset(id) => AssetRegistry::location(&id).unwrap_or_default(),
111111
};
112-
loc.and_then(|l| l.try_into().ok())
112+
loc.and_then(|l| l.into_versioned().try_into().ok())
113113
}
114114
}
115115
impl Convert<Location, Option<CurrencyId>> for CurrencyIdConvert {
116116
fn convert(l: Location) -> Option<CurrencyId> {
117-
use xcm::v4::Junction::*;
117+
use xcm::v5::Junction::*;
118118

119119
let a: Vec<u8> = "A".into();
120120
let a1: Vec<u8> = "A1".into();
@@ -147,14 +147,14 @@ impl Convert<Location, Option<CurrencyId>> for CurrencyIdConvert {
147147
_ => None,
148148
};
149149
currency_id.or_else(|| {
150-
let loc = v3::Location::try_from(l.clone()).ok()?;
150+
let loc = v3::Location::try_from(l.into_versioned()).ok()?;
151151
AssetRegistry::location_to_asset_id(&loc).map(CurrencyId::RegisteredAsset)
152152
})
153153
}
154154
}
155155
impl Convert<Asset, Option<CurrencyId>> for CurrencyIdConvert {
156156
fn convert(a: Asset) -> Option<CurrencyId> {
157-
use xcm::v4::prelude::*;
157+
use xcm::v5::prelude::*;
158158
if let Asset {
159159
fun: Fungible(_),
160160
id: AssetId(id),

asset-registry/src/mock/para.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use sp_runtime::{
2323
traits::{AccountIdConversion, Convert, IdentityLookup},
2424
AccountId32,
2525
};
26-
use xcm::v4::{prelude::*, Weight};
26+
use xcm::v5::{prelude::*, Weight};
2727
use xcm_builder::{
2828
AccountId32Aliases, AllowTopLevelPaidExecutionFrom, EnsureXcmOrigin, FixedWeightBounds, ParentIsPreset,
2929
RelayChainAsNative, SiblingParachainAsNative, SiblingParachainConvertsVia, SignedAccountId32AsNative,
@@ -55,6 +55,7 @@ impl pallet_balances::Config for Runtime {
5555
type RuntimeFreezeReason = RuntimeFreezeReason;
5656
type FreezeIdentifier = [u8; 8];
5757
type MaxFreezes = ();
58+
type DoneSlashHandler = ();
5859
}
5960

6061
use orml_asset_registry::impls::ExistentialDeposits as AssetRegistryExistentialDeposits;
@@ -193,7 +194,8 @@ pub type AssetRegistryWeightTrader =
193194
pub struct MyFixedConversionRateProvider;
194195
impl FixedConversionRateProvider for MyFixedConversionRateProvider {
195196
fn get_fee_per_second(location: &Location) -> Option<u128> {
196-
let metadata = AssetRegistry::fetch_metadata_by_location(&location.clone().try_into().unwrap())?;
197+
let metadata =
198+
AssetRegistry::fetch_metadata_by_location(&location.clone().into_versioned().try_into().unwrap())?;
197199
Some(metadata.additional.fee_per_second)
198200
}
199201
}

asset-registry/src/mock/relay.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use polkadot_runtime_parachains::{
1212
origin, shared,
1313
};
1414
use sp_runtime::{traits::IdentityLookup, AccountId32};
15-
use xcm::v4::prelude::*;
15+
use xcm::v5::prelude::*;
1616
use xcm_builder::{
1717
AccountId32Aliases, AllowTopLevelPaidExecutionFrom, ChildParachainAsNative, ChildParachainConvertsVia,
1818
FixedWeightBounds, FungibleAdapter, IsConcrete, SignedAccountId32AsNative, SignedToAccountId32,
@@ -45,6 +45,7 @@ impl pallet_balances::Config for Runtime {
4545
type RuntimeFreezeReason = RuntimeFreezeReason;
4646
type FreezeIdentifier = [u8; 8];
4747
type MaxFreezes = ();
48+
type DoneSlashHandler = ();
4849
}
4950

5051
impl shared::Config for Runtime {

asset-registry/src/tests.rs

+1-22
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,9 @@ use sp_runtime::{
1717
traits::{AccountIdConversion, BadOrigin, Dispatchable},
1818
AccountId32,
1919
};
20-
use xcm::{v3, v4::prelude::*, VersionedLocation};
20+
use xcm::{v3, v5::prelude::*, VersionedLocation};
2121
use xcm_simulator::TestExt;
2222

23-
#[allow(deprecated)]
24-
type OldLocation = xcm::v2::MultiLocation;
25-
#[allow(deprecated)]
26-
type OldJunctions = xcm::v2::Junctions;
27-
#[allow(deprecated)]
28-
type OldJunction = xcm::v2::Junction;
29-
3023
fn treasury_account() -> AccountId32 {
3124
TreasuryAccount::get()
3225
}
@@ -585,20 +578,6 @@ fn test_asset_authority() {
585578
});
586579
}
587580

588-
#[test]
589-
fn test_v2_to_v3_incompatible_multilocation() {
590-
// Assert that V2 and V3 Location both are encoded differently
591-
592-
#[allow(deprecated)]
593-
let old_location = OldLocation::new(
594-
0,
595-
OldJunctions::X1(OldJunction::GeneralKey(vec![0].try_into().unwrap())),
596-
);
597-
assert!(
598-
old_location.encode() != Location::new(0, [Junction::from(BoundedVec::try_from(vec![0]).unwrap())]).encode()
599-
);
600-
}
601-
602581
#[test]
603582
fn test_decode_bounded_vec() {
604583
TestNet::reset();

authority/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ pub mod module {
319319
#[pallet::call_index(0)]
320320
#[pallet::weight({
321321
let info = call.get_dispatch_info();
322-
(T::WeightInfo::dispatch_as().saturating_add(info.weight), info.class)
322+
(T::WeightInfo::dispatch_as().saturating_add(info.total_weight()), info.class)
323323
})]
324324
pub fn dispatch_as(origin: OriginFor<T>, as_origin: T::AsOriginId, call: Box<CallOf<T>>) -> DispatchResult {
325325
as_origin.check_dispatch_from(origin)?;
@@ -508,7 +508,7 @@ pub mod module {
508508
ensure!(who == caller, Error::<T>::TriggerCallNotPermitted);
509509
}
510510
ensure!(
511-
call_weight_bound.all_gte(call.get_dispatch_info().weight),
511+
call_weight_bound.all_gte(call.get_dispatch_info().total_weight()),
512512
Error::<T>::WrongCallWeightBound
513513
);
514514
let result = call.dispatch(OriginFor::<T>::root());

authority/src/tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ fn trigger_call_works() {
491491
});
492492
let hash = <Runtime as frame_system::Config>::Hashing::hash_of(&call);
493493

494-
let call_weight_bound = call.get_dispatch_info().weight;
494+
let call_weight_bound = call.get_dispatch_info().total_weight();
495495

496496
// call not authorized yet
497497
assert_noop!(
@@ -617,7 +617,7 @@ fn trigger_call_should_be_free_and_operational() {
617617
ratio: Perbill::from_percent(50),
618618
});
619619
let hash = <Runtime as frame_system::Config>::Hashing::hash_of(&call);
620-
let call_weight_bound = call.get_dispatch_info().weight;
620+
let call_weight_bound = call.get_dispatch_info().total_weight();
621621
let trigger_call = RuntimeCall::Authority(authority::Call::trigger_call {
622622
hash,
623623
call_weight_bound,

benchmarking/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1211,8 +1211,8 @@ pub fn show_benchmark_debug_info(
12111211
components: &[(BenchmarkParameter, u32)],
12121212
verify: &bool,
12131213
error_message: &str,
1214-
) -> sp_runtime::RuntimeString {
1215-
sp_runtime::format_runtime_string!(
1214+
) -> String {
1215+
format!(
12161216
"\n* Pallet: {}\n\
12171217
* Benchmark: {}\n\
12181218
* Components: {:?}\n\

currencies/src/mock.rs

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ impl pallet_balances::Config for Runtime {
4646
type RuntimeFreezeReason = RuntimeFreezeReason;
4747
type FreezeIdentifier = [u8; 8];
4848
type MaxFreezes = ();
49+
type DoneSlashHandler = ();
4950
}
5051

5152
parameter_type_with_key! {

gradually-update/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

1010
[dependencies]
11-
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["max-encoded-len"] }
11+
parity-scale-codec = { workspace = true, default-features = false, features = ["max-encoded-len"] }
1212
scale-info = { workspace = true }
1313
serde = { workspace = true, optional = true }
1414

oracle/runtime-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "Runtime API module for orml-oracle."
88
repository = "https://github.com/open-web3-stack/open-runtime-module-library"
99

1010
[dependencies]
11-
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["derive"] }
11+
parity-scale-codec = { workspace = true, default-features = false, features = ["derive"] }
1212
sp-api = { workspace = true }
1313
sp-std = { workspace = true }
1414

parameters/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Acala Developers"]
88
edition = "2021"
99

1010
[dependencies]
11-
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["max-encoded-len"] }
11+
parity-scale-codec = { workspace = true, default-features = false, features = ["max-encoded-len"] }
1212
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
1313
serde = { workspace = true, optional = true }
1414

rewards/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Acala Developers"]
88
edition = "2021"
99

1010
[dependencies]
11-
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["max-encoded-len"] }
11+
parity-scale-codec = { workspace = true, default-features = false, features = ["max-encoded-len"] }
1212
scale-info = { workspace = true }
1313
serde = { workspace = true, optional = true }
1414

tokens/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

1010
[dependencies]
11-
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["max-encoded-len"] }
11+
parity-scale-codec = { workspace = true, default-features = false, features = ["max-encoded-len"] }
1212
log = { workspace = true }
1313
scale-info = { workspace = true }
1414
serde = { workspace = true, optional = true }

tokens/runtime-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "Runtime API module for orml-tokens."
88
repository = "https://github.com/open-web3-stack/open-runtime-module-library"
99

1010
[dependencies]
11-
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["derive"] }
11+
parity-scale-codec = { workspace = true, default-features = false, features = ["derive"] }
1212
frame-support = { workspace = true }
1313
sp-api = { workspace = true }
1414
sp-runtime = { workspace = true }

tokens/src/mock.rs

+16-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ use frame_support::{
77
construct_runtime, derive_impl, parameter_types,
88
traits::{
99
tokens::{PayFromAccount, UnityAssetBalanceConversion},
10-
ChangeMembers, ConstU32, ConstU64, ContainsLengthBound, SortedMembers,
10+
ChangeMembers, ConstU32, ConstU64,
1111
},
1212
PalletId,
1313
};
1414
use orml_traits::parameter_type_with_key;
1515
use sp_runtime::{
16-
traits::{AccountIdConversion, IdentityLookup},
16+
traits::{AccountIdConversion, BlockNumberProvider, IdentityLookup},
1717
AccountId32, BuildStorage, Permill,
1818
};
1919
use sp_std::cell::RefCell;
@@ -65,6 +65,19 @@ parameter_types! {
6565
}
6666

6767
pub type MockCurrencyAdapter = CurrencyAdapter<Runtime, GetTokenId>;
68+
69+
parameter_types! {
70+
pub static MockBlockNumberProvider: u64 = 0;
71+
}
72+
73+
impl BlockNumberProvider for MockBlockNumberProvider {
74+
type BlockNumber = u64;
75+
76+
fn current_block_number() -> BlockNumberFor<Runtime> {
77+
Self::get()
78+
}
79+
}
80+
6881
impl pallet_treasury::Config for Runtime {
6982
type PalletId = TreasuryPalletId;
7083
type Currency = MockCurrencyAdapter;
@@ -85,6 +98,7 @@ impl pallet_treasury::Config for Runtime {
8598
type PayoutPeriod = ConstU64<10>;
8699
#[cfg(feature = "runtime-benchmarks")]
87100
type BenchmarkHelper = ();
101+
type BlockNumberProvider = MockBlockNumberProvider;
88102
}
89103

90104
thread_local! {

traits/src/asset_registry.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use frame_support::pallet_prelude::*;
22
use sp_runtime::DispatchResult;
33
use sp_std::fmt::Debug;
4-
use xcm::v4::prelude::*;
4+
use xcm::v5::prelude::*;
55
use xcm::VersionedLocation;
66

77
pub trait WeightToFeeConverter {

traits/src/location.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use sp_core::{bounded::BoundedVec, ConstU32};
2-
use xcm::v4::prelude::*;
2+
use xcm::v5::prelude::*;
33

44
pub trait Parse {
55
/// Returns the "chain" location part. It could be parent, sibling

traits/src/multi_asset.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use sp_core::{bounded::BoundedVec, ConstU32};
2-
use xcm::v4::prelude::*;
2+
use xcm::v5::prelude::*;
33

44
use crate::location::RelativeLocations;
55

traits/src/xcm_transfer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use sp_runtime::DispatchError;
22
use sp_std::vec::Vec;
33
use xcm::{
4-
v4::{prelude::*, Weight},
4+
v5::{prelude::*, Weight},
55
VersionedAsset, VersionedAssets, VersionedLocation,
66
};
77
pub struct Transferred<AccountId> {

unknown-tokens/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
use frame_support::pallet_prelude::*;
55
use sp_std::vec::Vec;
6-
use xcm::v4::prelude::*;
6+
use xcm::v5::prelude::*;
77

88
use orml_xcm_support::UnknownAsset;
99

utilities/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ edition = "2021"
99

1010
[dependencies]
1111
scale-info = { workspace = true }
12-
serde = { version = "1.0.136", optional = true, features = ["derive"] }
13-
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["derive"] }
12+
serde = { workspace = true, optional = true, features = ["derive"] }
13+
parity-scale-codec = { workspace = true, default-features = false, features = ["derive"] }
1414

1515
frame-support = { workspace = true }
1616
sp-runtime = { workspace = true, features = ["serde"] }

vesting/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

1010
[dependencies]
11-
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["max-encoded-len"] }
11+
parity-scale-codec = { workspace = true, default-features = false, features = ["max-encoded-len"] }
1212
scale-info = { workspace = true }
1313
serde = { workspace = true, optional = true }
1414

vesting/src/mock.rs

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ impl pallet_balances::Config for Runtime {
3838
type RuntimeFreezeReason = RuntimeFreezeReason;
3939
type FreezeIdentifier = [u8; 8];
4040
type MaxFreezes = ();
41+
type DoneSlashHandler = ();
4142
}
4243

4344
pub struct EnsureAliceOrBob;

xcm-mock-message-queue/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use parity_scale_codec::{Decode, Encode};
88
use polkadot_parachain_primitives::primitives::DmpMessageHandler;
99
use sp_std::prelude::*;
1010
use xcm::{
11-
v4::{prelude::*, Weight},
11+
v5::{prelude::*, Weight},
1212
VersionedXcm,
1313
};
1414

xcm-support/src/currency_adapter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use sp_std::{
1212
result,
1313
};
1414

15-
use xcm::v4::{prelude::*, Asset, Error as XcmError, Location, Result};
15+
use xcm::v5::{prelude::*, Asset, Error as XcmError, Location, Result};
1616
use xcm_executor::{
1717
traits::{ConvertLocation, MatchesFungible, TransactAsset},
1818
AssetsInHolding,

0 commit comments

Comments
 (0)