This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* arbitrary application logic in CLI * collation work * split up exit and work futures in application * collation node workflow * typo * indentation fix * doc grumbles * rename Application to Worker * refactor Worker::exit to exit_only
- Loading branch information
Showing
15 changed files
with
293 additions
and
96 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
[dependencies] | ||
error-chain = "0.12" | ||
polkadot-cli = { path = "polkadot/cli" } | ||
futures = "0.1" | ||
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" } | ||
|
||
[workspace] | ||
members = [ | ||
|
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 |
---|---|---|
|
@@ -2,12 +2,16 @@ | |
name = "polkadot-collator" | ||
version = "0.1.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Abstract collation logic" | ||
description = "Collator node implementation" | ||
|
||
[dependencies] | ||
futures = "0.1.17" | ||
substrate-client = { path = "../../substrate/client" } | ||
substrate-codec = { path = "../../substrate/codec", version = "0.1" } | ||
substrate-primitives = { path = "../../substrate/primitives", version = "0.1" } | ||
polkadot-api = { path = "../api" } | ||
polkadot-runtime = { path = "../runtime", version = "0.1" } | ||
polkadot-primitives = { path = "../primitives", version = "0.1" } | ||
polkadot-parachain = { path = "../parachain", version = "0.1" } | ||
polkadot-cli = { path = "../cli" } | ||
log = "0.4" | ||
ed25519 = { path = "../../substrate/ed25519" } |
Oops, something went wrong.