mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 06:21:11 +00:00
Initial GRANDPA integration (#866)
* 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
This commit is contained in:
committed by
Gav Wood
parent
1cc0e3b6ea
commit
68b4be14ff
@@ -23,7 +23,15 @@ parity-codec = "2.0"
|
||||
parity-codec-derive = "2.0"
|
||||
substrate-network-libp2p = { path = "../../core/network-libp2p" }
|
||||
|
||||
env_logger = { version = "0.4", optional = true }
|
||||
substrate-keyring = { path = "../../core/keyring", optional = true }
|
||||
substrate-test-client = { path = "../../core/test-client", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.4"
|
||||
env_logger = { version = "0.4" }
|
||||
substrate-keyring = { path = "../../core/keyring" }
|
||||
substrate-test-client = { path = "../../core/test-client" }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
test-helpers = ["env_logger", "substrate-keyring", "substrate-test-client"]
|
||||
|
||||
Reference in New Issue
Block a user