mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 08:11:04 +00:00
c226c4403d
* introduce polkadot-node-primitives * guide: change statement distribution message types * guide: remove variant from `CandidateSelectionMessage` * add a few more message types * add TODOs * Almost all messages * NewBackedCandidate notification * Formatting * Use AttestedCandidate as BackedCandidate * Update node/primitives/src/lib.rs Co-authored-by: Peter Goodspeed-Niklaus <coriolinus@users.noreply.github.com> * Fix the tests * Bring in types from #1242 * Adds network bridge messages * More message types from doc * use fn pointer type * Fixes from the review * Add missing Runtime subsystem message * rename to CandidateValidationMessage and fix tests Co-authored-by: Fedor Sakharov <fedor.sakharov@gmail.com> Co-authored-by: Peter Goodspeed-Niklaus <coriolinus@users.noreply.github.com>
14 lines
464 B
TOML
14 lines
464 B
TOML
[package]
|
|
name = "polkadot-node-messages"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
description = "Message types used by Subsystems"
|
|
|
|
[dependencies]
|
|
polkadot-primitives = { path = "../../primitives" }
|
|
polkadot-statement-table = { path = "../../statement-table" }
|
|
polkadot-node-primitives = { path = "../primitives" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures = "0.3.5"
|