Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Update XCMP Queue to Extended Version #644

Closed
wants to merge 3 commits into from
Closed
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
56 changes: 28 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "runtime-integration-tests"
version = "0.9.15"
version = "0.9.16"
description = "Integration tests"
authors = ["GalacticCouncil"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/parachain-runtime-mock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parachain-runtime-mock"
version = "0.2.9"
version = "0.2.10"
description = "A mock runtime for a parachain"
authors = ["GalacticCouncil"]
edition = "2021"
Expand Down
1 change: 1 addition & 0 deletions integration-tests/parachain-runtime-mock/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ impl cumulus_pallet_xcmp_queue::Config for ParachainRuntime {
type WeightInfo = ();
type ExecuteDeferredOrigin = EnsureRoot<AccountId>;
type MaxDeferredMessages = ConstU32<100>;
type MaxDeferredBuckets = ConstU32<1000>;
type RelayChainBlockNumberProvider = RelayChainBlockNumberProvider<ParachainRuntime>;
type XcmDeferFilter = ();
}
Expand Down
4 changes: 4 additions & 0 deletions integration-tests/src/xcm_rate_limiter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ fn xcm_rate_limiter_should_limit_aca_when_limit_is_exceeded() {
sent_at: 3,
deferred_to: basilisk_runtime::DeferDuration::get() + 4,
message_hash,
index: (basilisk_runtime::DeferDuration::get() + 4, 0),
position: 0,
}
.into(),
pallet_relaychain_info::Event::CurrentBlockNumbers {
Expand Down Expand Up @@ -226,6 +228,8 @@ fn deferred_messages_should_be_executable_by_root() {
sent_at: 3,
deferred_to: basilisk_runtime::DeferDuration::get() + 4,
message_hash,
index: (basilisk_runtime::DeferDuration::get() + 4, 0),
position: 0,
}
.into(),
pallet_relaychain_info::Event::CurrentBlockNumbers {
Expand Down
2 changes: 1 addition & 1 deletion runtime/basilisk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "basilisk-runtime"
version = "106.0.0"
version = "107.0.0"
authors = ["GalacticCouncil"]
edition = "2021"
homepage = "https://github.com/galacticcouncil/Basilisk-node"
Expand Down
2 changes: 1 addition & 1 deletion runtime/basilisk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("basilisk"),
impl_name: create_runtime_str!("basilisk"),
authoring_version: 1,
spec_version: 106,
spec_version: 107,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down
Loading
Loading