Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/amplitude/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
spec_name: create_runtime_str!("amplitude"),
impl_name: create_runtime_str!("amplitude"),
authoring_version: 1,
spec_version: 23,
spec_version: 24,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 14,
Expand Down Expand Up @@ -606,7 +606,7 @@
type DisabledValidators = ();
type MaxAuthorities = MaxAuthorities;
type AllowMultipleBlocksPerSlot = ConstBool<false>;
#[cfg(feature = "experimental")]

Check failure on line 609 in runtime/amplitude/src/lib.rs

View workflow job for this annotation

GitHub Actions / test-code

unexpected `cfg` condition value: `experimental`
type SlotDuration = ConstU64<SLOT_DURATION>;
}

Expand Down
11 changes: 0 additions & 11 deletions runtime/amplitude/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,6 @@ where
return true;
}

// Explicit deny for KSM from Relay Chain
if matches!(
asset,
MultiAsset {
id: Concrete(MultiLocation { parents: 1, interior: Here }),
fun: Fungible(_),
}
) && matches!(origin, MultiLocation { parents: 1, interior: Here })
{
return false;
}

if let Some(ref reserve) = ReserveProvider::reserve(asset) {
if reserve == origin {
Expand Down
2 changes: 1 addition & 1 deletion runtime/foucoco/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("foucoco"),
impl_name: create_runtime_str!("foucoco"),
authoring_version: 1,
spec_version: 26,
spec_version: 27,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 8,
Expand Down
12 changes: 0 additions & 12 deletions runtime/foucoco/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,6 @@ where
return true;
}

// Explicit deny for PAS from Relay Chain
if matches!(
asset,
MultiAsset {
id: Concrete(MultiLocation { parents: 1, interior: Here }),
fun: Fungible(_),
}
) && matches!(origin, MultiLocation { parents: 1, interior: Here })
{
return false;
}

if let Some(ref reserve) = ReserveProvider::reserve(asset) {
if reserve == origin {
return true;
Expand Down
2 changes: 1 addition & 1 deletion runtime/pendulum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
spec_name: create_runtime_str!("pendulum"),
impl_name: create_runtime_str!("pendulum"),
authoring_version: 1,
spec_version: 23,
spec_version: 24,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 11,
Expand Down Expand Up @@ -609,7 +609,7 @@
type DisabledValidators = ();
type MaxAuthorities = MaxAuthorities;
type AllowMultipleBlocksPerSlot = ConstBool<false>;
#[cfg(feature = "experimental")]

Check failure on line 612 in runtime/pendulum/src/lib.rs

View workflow job for this annotation

GitHub Actions / test-code

unexpected `cfg` condition value: `experimental`
type SlotDuration = ConstU64<SLOT_DURATION>;
}
parameter_types! {
Expand Down
12 changes: 0 additions & 12 deletions runtime/pendulum/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,6 @@ where
return true;
}

// Explicit deny for DOT from Relay Chain
if matches!(
asset,
MultiAsset {
id: Concrete(MultiLocation { parents: 1, interior: Here }),
fun: Fungible(_),
}
) && matches!(origin, MultiLocation { parents: 1, interior: Here })
{
return false;
}

if let Some(ref reserve) = ReserveProvider::reserve(asset) {
if reserve == origin {
return true;
Expand Down
Loading