forked from paritytech/cumulus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wait for block import in parachain consensus (paritytech#271)
* Wait for block import in parachain consensus There was a bug in the parachain consensus that when importing a relay chain block that sets a new best parachain block, but the required parachain block was not yet imported. This pr fixes this by waiting for the block to be imported. * Finish docs
- Loading branch information
Showing
14 changed files
with
809 additions
and
313 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = ["Parity Technologies <[email protected]>"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
# substrate deps | ||
# Substrate deps | ||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
|
@@ -17,12 +17,23 @@ sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "mas | |
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
|
||
# polkadot deps | ||
# Polkadot deps | ||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" } | ||
polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "master" } | ||
|
||
# other deps | ||
futures = { version = "0.3.1", features = ["compat"] } | ||
# Other deps | ||
futures = { version = "0.3.8", features = ["compat"] } | ||
tokio = "0.1.22" | ||
codec = { package = "parity-scale-codec", version = "1.3.0", features = [ "derive" ] } | ||
log = "0.4" | ||
tracing = "0.1.22" | ||
|
||
[dev-dependencies] | ||
# Substrate deps | ||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } | ||
|
||
# Cumulus dependencies | ||
cumulus-test-runtime = { path = "../test/runtime" } | ||
cumulus-test-client = { path = "../test/client" } | ||
|
||
# Other deps | ||
futures-timer = "3.0.2" |
Oops, something went wrong.