diff --git a/Cargo.lock b/Cargo.lock index a6315f9ed6..980e6b0d0a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5298,7 +5298,7 @@ dependencies = [ [[package]] name = "node-cli" -version = "0.9.2" +version = "0.9.3" dependencies = [ "cumulus-client-cli", "cumulus-client-service", diff --git a/node/cli/Cargo.toml b/node/cli/Cargo.toml index f071ba3ca1..0880f8e637 100644 --- a/node/cli/Cargo.toml +++ b/node/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-cli" -version = "0.9.2" +version = "0.9.3" authors = ["Liebi Technologies "] description = "Bifrost Parachain Node" build = "build.rs" diff --git a/runtime/bifrost/src/lib.rs b/runtime/bifrost/src/lib.rs index e6a4859df1..ae9315a8e5 100644 --- a/runtime/bifrost/src/lib.rs +++ b/runtime/bifrost/src/lib.rs @@ -31,7 +31,7 @@ use core::convert::TryInto; // A few exports that help ease life for downstream crates. pub use frame_support::{ construct_runtime, match_type, parameter_types, - traits::{Contains, Everything, IsInVec, Randomness}, + traits::{Contains, Everything, IsInVec, Nothing, Randomness}, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND}, DispatchClass, IdentityFee, Weight, @@ -133,7 +133,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("bifrost"), impl_name: create_runtime_str!("bifrost"), authoring_version: 1, - spec_version: 902, + spec_version: 903, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -706,11 +706,7 @@ match_type! { }; } -pub type Barrier = ( - TakeWeightCredit, - AllowTopLevelPaidExecutionFrom, - BifrostXcmTransactFilter, -); +pub type Barrier = (TakeWeightCredit, AllowTopLevelPaidExecutionFrom); pub type BifrostAssetTransactor = MultiCurrencyAdapter< Currencies, @@ -822,7 +818,7 @@ impl pallet_xcm::Config for Runtime { type LocationInverter = LocationInverter; type SendXcmOrigin = EnsureXcmOrigin; type Weigher = FixedWeightBounds; - type XcmExecuteFilter = Everything; + type XcmExecuteFilter = Nothing; type XcmExecutor = XcmExecutor; type XcmReserveTransferFilter = Everything; type XcmRouter = XcmRouter;