Skip to content

Commit

Permalink
Availability store subsystem (paritytech#1404)
Browse files Browse the repository at this point in the history
* Initial commit

* WIP

* Make atomic transactions

* Remove pruning code

* Fix build and add a Nop to bridge

* Fixes from review

* Move config struct around for clarity

* Rename constructor and warn on missing docs

* Fix a test and rename a message

* Fix some more reviews

* Obviously failed to rebase cleanly
  • Loading branch information
montekki authored Jul 27, 2020
1 parent 0ea96d1 commit b838b38
Show file tree
Hide file tree
Showing 15 changed files with 701 additions and 57 deletions.
19 changes: 19 additions & 0 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 @@ -45,6 +45,7 @@ members = [

"node/core/bitfield-signing",
"node/core/proposer",
"node/core/av-store",
"node/network/bridge",
"node/network/pov-distribution",
"node/network/statement-distribution",
Expand Down
24 changes: 24 additions & 0 deletions node/core/av-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
name = "polkadot-node-core-av-store"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"

[dependencies]
futures = "0.3.5"
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
polkadot-overseer = { path = "../../overseer" }
polkadot-primitives = { path = "../../../primitives" }
erasure = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
kvdb = "0.7.0"
kvdb-rocksdb = "0.9.0"
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
log = "0.4.8"
derive_more = "0.99.9"

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

0 comments on commit b838b38

Please sign in to comment.