mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 07:01:03 +00:00
d8d61bad36
* implement dispute participation subsystem * guide: minor fix in dispute participation * Update node/core/dispute-participation/src/lib.rs Co-authored-by: Andronik Ordian <write@reusable.software> * dispute: add comments to participation logic * dispute-coordinator: fix test compilation * implementers-guide: update dispute participation * dispute-participation: add error for missing validation code * dispute-participation: add tests * Update node/core/dispute-participation/src/lib.rs Co-authored-by: Robert Habermeier <rphmeier@gmail.com> * guide: update overseer protocol dispute participation message * dispute-participation: remove duplication in tests Co-authored-by: Andronik Ordian <write@reusable.software> Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
21 lines
625 B
TOML
21 lines
625 B
TOML
[package]
|
|
name = "polkadot-node-core-dispute-participation"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3.12"
|
|
thiserror = "1.0.23"
|
|
tracing = "0.1.26"
|
|
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-node-subsystem = { path = "../../subsystem" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5.0"
|
|
parity-scale-codec = "2.0.0"
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers"}
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|