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

Consensus utilities and rearchitecture for more dynamic collators #2382

Merged
merged 34 commits into from
May 14, 2023
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
ea03cb6
implement a proposer utility for consensus
rphmeier Mar 25, 2023
1a4ef13
tidy up deps of new proposer crate
rphmeier Mar 25, 2023
2ce534d
implement a collator-service crate
rphmeier Mar 25, 2023
e1980de
rewrite cumulus-collator to use new service struct
rphmeier Mar 25, 2023
936cc7f
implement a module for relay-chain-driven collators
rphmeier Mar 25, 2023
b8fd4db
adapt start_collator to use the new relay_chain_driven module
rphmeier Mar 25, 2023
24a43dc
move collator-service to a public submodule
rphmeier Mar 26, 2023
eebad21
create an interface trait for the proposer
rphmeier Mar 27, 2023
a179033
begin aura reimplementation
rphmeier Mar 31, 2023
6e7fc8d
address review comments
rphmeier Mar 31, 2023
29d7ed8
update substrrate git ref
rphmeier Mar 31, 2023
37b0152
update polkadot-primitives refs
rphmeier Mar 31, 2023
5fbd533
rough draft of aura collation using standalone fns
rphmeier Mar 31, 2023
72362e3
add a ServiceInterface
rphmeier Mar 31, 2023
c0c367b
port aura reimpl to use new service trait
rphmeier Mar 31, 2023
ed0b09e
add an import queue utility crate
rphmeier Apr 6, 2023
7553563
remove import queue crate in favor of module in common
rphmeier Apr 6, 2023
6261829
implement new verification queue for aura
rphmeier Apr 7, 2023
7e4f235
implement remaining behaviors
rphmeier Apr 7, 2023
e3d257b
Merge branch 'master' into rh-new-consensus
rphmeier Apr 10, 2023
b2697f5
split 'collate' into smaller functions that could be pub
rphmeier Apr 18, 2023
93eea31
add telemetry
rphmeier Apr 20, 2023
58dfa16
fix doc job?
rphmeier Apr 29, 2023
fa6ca12
Specify async-trait patch version
rphmeier May 4, 2023
8c50bc7
remove 'fn@' in doc string.
rphmeier May 4, 2023
d083d46
update variable names to be more readable
rphmeier May 4, 2023
604ba8a
refactor proposer errors to anyhow/thiserror
rphmeier May 4, 2023
460715e
remove manual span instrumentation
rphmeier May 4, 2023
8266532
make slot_claim private
rphmeier May 4, 2023
496c688
fix unused import
rphmeier May 4, 2023
32e3b28
fmt
rphmeier May 6, 2023
83b4b90
Merge branch 'master' into rh-new-consensus
rphmeier May 13, 2023
50c1f62
fmt
rphmeier May 13, 2023
8bc4ba4
make clippy happy
rphmeier May 14, 2023
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
10 changes: 10 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 @@ -5,6 +5,7 @@ members = [
"client/cli",
"client/consensus/aura",
"client/consensus/common",
"client/consensus/proposer",
"client/consensus/relay-chain",
"client/network",
"client/pov-recovery",
Expand Down
4 changes: 2 additions & 2 deletions client/collator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"

[dependencies]
parking_lot = "0.12.1"
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
futures = "0.3.21"
parking_lot = "0.12.0"
tracing = "0.1.25"

# Substrate
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }

Expand Down
Loading