Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

CandidateBackingSubsystem #1312

Merged
merged 24 commits into from
Jul 9, 2020
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f40c165
Updates guide for CandidateBacking
montekki Jun 24, 2020
4031bc7
Move assignment types to primitives
montekki Jun 25, 2020
7f23f7d
Merge branch 'master' into fs-candidate-backing-subsystem
montekki Jun 25, 2020
45ead89
Initial implementation.
montekki Jun 27, 2020
81220d8
More functionality
montekki Jul 1, 2020
7572a13
Merge branch 'master' into fs-candidate-backing-subsystem
montekki Jul 2, 2020
a7d5e86
use assert_matches
montekki Jul 2, 2020
697accf
Changes to report misbehaviors
montekki Jul 2, 2020
2ce747e
Some fixes after a review
montekki Jul 3, 2020
af9f34a
Remove a blank line
montekki Jul 3, 2020
245cc96
Update guide and some types
montekki Jul 4, 2020
63124aa
Adds run_job function
montekki Jul 4, 2020
1b744ed
Some comments and refactorings
montekki Jul 4, 2020
96ba9dd
Merge branch 'master' into fs-candidate-backing-subsystem
montekki Jul 4, 2020
481ab97
Merge branch 'master' into fs-candidate-backing-subsystem
montekki Jul 7, 2020
f52aa09
Fix review
montekki Jul 7, 2020
0f8e2b9
Merge branch 'master' into fs-candidate-backing-subsystem
montekki Jul 7, 2020
e4aed7c
Remove warnings
montekki Jul 7, 2020
05d7dc6
Use summary in kicking off validation
montekki Jul 7, 2020
994eefd
Parallelize requests
montekki Jul 8, 2020
d879df6
Validation provides local and global validation params
montekki Jul 8, 2020
fef54e1
Test issued validity tracking
montekki Jul 8, 2020
e8fd8f3
Nits from review
montekki Jul 9, 2020
e137f37
Merge branch 'master' into fs-candidate-backing-subsystem
montekki Jul 9, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 51 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ members = [
"node/overseer",
"node/primitives",
"node/service",
"node/core/backing",
"node/subsystem",
"node/test-helpers/subsystem",

Expand Down
30 changes: 30 additions & 0 deletions node/core/backing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[package]
name = "polkadot-node-core-backing"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"

[dependencies]
futures = "0.3.5"
log = "0.4.8"
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "master" }
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" }

polkadot-primitives = { path = "../../../primitives" }
polkadot-node-primitives = { path = "../../primitives" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
erasure-coding = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
statement-table = { package = "polkadot-statement-table", path = "../../../statement-table" }
futures-timer = "3.0.2"
streamunordered = "0.5.1"
derive_more = "0.99.9"
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }

[dev-dependencies]
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
futures = { version = "0.3.5", features = ["thread-pool"] }
subsystem-test = { package = "polkadot-subsystem-test-helpers", path = "../../test-helpers/subsystem" }
assert_matches = "1.3.0"
Loading