Skip to content

Commit 5ef4e22

Browse files
authored
Merge pull request #672 from galacticcouncil/async_backing
feat: 6 second block time
2 parents 0aa2de1 + da8ca57 commit 5ef4e22

24 files changed

Lines changed: 324 additions & 949 deletions

File tree

Cargo.lock

Lines changed: 16 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,12 @@ cumulus-client-service = { git = "https://github.com/galacticcouncil/polkadot-sd
235235
cumulus-client-collator = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false }
236236
cumulus-pallet-aura-ext = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false }
237237
cumulus-pallet-dmp-queue = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false }
238-
cumulus-pallet-parachain-system = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false }
238+
cumulus-pallet-parachain-system = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false, features = [
239+
"parameterized-consensus-hook",
240+
] }
239241
cumulus-pallet-xcm = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false }
240242
cumulus-pallet-xcmp-queue = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false }
243+
cumulus-primitives-aura = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false }
241244
cumulus-primitives-core = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false }
242245
cumulus-primitives-parachain-inherent = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false }
243246
cumulus-primitives-timestamp = { git = "https://github.com/galacticcouncil/polkadot-sdk", branch ="release-polkadot-v1.11.0-patch", default-features = false }

integration-tests/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "runtime-integration-tests"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
description = "Integration tests"
55
authors = ["GalacticCouncil"]
66
edition = "2021"
@@ -85,6 +85,7 @@ sp-block-builder = { workspace = true }
8585
sp-consensus-aura = { workspace = true }
8686
sp-consensus-babe = { workspace = true }
8787
sp-consensus-beefy = { workspace = true }
88+
sp-consensus-slots = { workspace = true }
8889
sp-authority-discovery = { workspace = true }
8990
sp-core = { workspace = true }
9091
sp-inherents = { workspace = true }

0 commit comments

Comments
 (0)