mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 17:31:05 +00:00
927cb59aaf
* skeleton of collators object * awaiting and handling collations. rename `collators` to CollationPool * add some tests * add tests * implement Collators trait for ConsensusNetwork * plug collators into main polkadot-network * ignore collator role message * add a couple more tests * garbage collection for collations * extract session-key tracking from consensus * add local_collations.rs * finish polish of local_collations * integrate local_collations into network layer * introduce API for adding local collations * mostly finish collator implementation pending service fix * Specialized network() * push collations to the network * grumbles * substrate-service has custom configuration * initialize network in collator mode as necessary
19 lines
663 B
TOML
19 lines
663 B
TOML
[package]
|
|
name = "polkadot-collator"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
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-cli = { path = "../cli" }
|
|
log = "0.4"
|
|
ed25519 = { path = "../../substrate/ed25519" }
|
|
tokio = "0.1.7"
|