Skip to content

Commit 4189356

Browse files
committed
fix
1 parent 0abe6f9 commit 4189356

File tree

2 files changed

+23
-27
lines changed

2 files changed

+23
-27
lines changed

tokens/src/mock.rs

-24
Original file line numberDiff line numberDiff line change
@@ -56,30 +56,6 @@ thread_local! {
5656
]);
5757
}
5858

59-
pub struct TenToFourteen;
60-
impl SortedMembers<AccountId> for TenToFourteen {
61-
fn sorted_members() -> Vec<AccountId> {
62-
TEN_TO_FOURTEEN.with(|v| v.borrow().clone())
63-
}
64-
#[cfg(feature = "runtime-benchmarks")]
65-
fn add(new: &AccountId) {
66-
TEN_TO_FOURTEEN.with(|v| {
67-
let mut members = v.borrow_mut();
68-
members.push(new.clone());
69-
members.sort();
70-
})
71-
}
72-
}
73-
74-
impl ContainsLengthBound for TenToFourteen {
75-
fn max_len() -> usize {
76-
TEN_TO_FOURTEEN.with(|v| v.borrow().len())
77-
}
78-
fn min_len() -> usize {
79-
0
80-
}
81-
}
82-
8359
parameter_types! {
8460
pub const ProposalBond: Permill = Permill::from_percent(5);
8561
pub const Burn: Permill = Permill::from_percent(50);

xtokens/src/mock/para_relative_view.rs

+23-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use crate as orml_xtokens;
33

44
use frame_support::{
55
construct_runtime, derive_impl, parameter_types,
6-
traits::{ConstU128, ConstU32, Contains, Everything, Get, Nothing},
6+
traits::{ConstU128, ConstU32, Contains, ContainsPair, Everything, Get, Nothing},
77
};
88
use frame_system::EnsureRoot;
99
use pallet_xcm::XcmPassthrough;
@@ -12,6 +12,7 @@ use sp_runtime::{
1212
traits::{Convert, IdentityLookup},
1313
AccountId32, BoundedVec,
1414
};
15+
use sp_std::marker::PhantomData;
1516
use xcm::v4::{prelude::*, Weight};
1617
use xcm_builder::{
1718
AccountId32Aliases, AllowTopLevelPaidExecutionFrom, EnsureXcmOrigin, FixedWeightBounds, ParentIsPreset,
@@ -22,10 +23,10 @@ use xcm_executor::{Config, XcmExecutor};
2223

2324
use crate::mock::AllTokensAreCreatedEqualToWeight;
2425
use orml_traits::{
25-
location::{AbsoluteReserveProvider, RelativeReserveProvider},
26+
location::{AbsoluteReserveProvider, RelativeReserveProvider, Reservegit},
2627
parameter_type_with_key,
2728
};
28-
use orml_xcm_support::{IsNativeConcrete, MultiCurrencyAdapter, MultiNativeAsset};
29+
use orml_xcm_support::{IsNativeConcrete, MultiCurrencyAdapter};
2930

3031
pub type AccountId = AccountId32;
3132

@@ -115,6 +116,25 @@ parameter_types! {
115116
pub const MaxAssetsIntoHolding: u32 = 64;
116117
}
117118

119+
pub struct MultiNativeAsset<ReserveProvider>(PhantomData<ReserveProvider>);
120+
impl<ReserveProvider> ContainsPair<Asset, Location> for MultiNativeAsset<ReserveProvider>
121+
where
122+
ReserveProvider: Reserve,
123+
{
124+
fn contains(asset: &Asset, origin: &Location) -> bool {
125+
if let Some(ref reserve) = ReserveProvider::reserve(asset) {
126+
if reserve == origin {
127+
return true;
128+
}
129+
}
130+
// allow parachain to be reserved of relay to bypass https://github.com/paritytech/polkadot-sdk/pull/5660
131+
if asset.id.0 == Location::parent() {
132+
return true;
133+
}
134+
false
135+
}
136+
}
137+
118138
pub struct XcmConfig;
119139
impl Config for XcmConfig {
120140
type RuntimeCall = RuntimeCall;

0 commit comments

Comments
 (0)