mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 14:31:02 +00:00
02f8897648
* implement grandpa client * consensus gossip with arbitrary topics * defer GRANDPA messages until referenced blocks imported * set up communication for voter in a transparent way * instantiate GRANDPA voter * keep last round state on disk * switch back to crates.io finality-grandpa * update cargo.lock * use new `collect_garbage` API * update sync test framework and make public * test that observers can observe * fix warning * use more idiomatic predicate for collecting garbage in gossip * kill spaces * fix date * fatal error when unable to complete * rename run_voter to run_grandpa * switch back to crates.io
23 lines
574 B
TOML
23 lines
574 B
TOML
[package]
|
|
name = "substrate-finality-grandpa"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
futures = "0.1.17"
|
|
parity-codec = "2.0"
|
|
sr-primitives = { path = "../sr-primitives" }
|
|
substrate-primitives = { path = "../primitives" }
|
|
substrate-client = { path = "../client" }
|
|
log = "0.4"
|
|
tokio = "0.1.7"
|
|
|
|
[dependencies.finality-grandpa]
|
|
version = "0.2.0"
|
|
features = ["derive-codec"]
|
|
|
|
[dev-dependencies]
|
|
substrate-network = { path = "../network", features = ["test-helpers"] }
|
|
parking_lot = "0.4"
|
|
substrate-keyring = { path = "../keyring" }
|