Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
9e3a67b
candidate statement importing
rphmeier Dec 12, 2017
6ee2205
import votes on validity
rphmeier Dec 12, 2017
abe2e67
import availability votes
rphmeier Dec 12, 2017
41dd470
candidate receipt type
rphmeier Dec 12, 2017
68b7b12
make table mod public
rphmeier Dec 12, 2017
773cecb
test context for table
rphmeier Dec 12, 2017
f0cd751
add harness for tests
rphmeier Dec 13, 2017
f510e3d
some tests for misbehavior
rphmeier Dec 13, 2017
ee2a865
produce proposal from table
rphmeier Dec 13, 2017
9f88742
count candidate issuance as implicit vote
rphmeier Dec 13, 2017
7b6436e
keep track of messages known by validators
rphmeier Dec 13, 2017
0e13e28
Merge branch 'master' into rh-candidate-agreement
rphmeier Dec 14, 2017
85b0bf0
fix primitives compilation
rphmeier Dec 14, 2017
946f160
simple BFT agreement
rphmeier Dec 18, 2017
2f5e375
kill unused macro_use annotation
rphmeier Dec 18, 2017
73ce658
tests for BFT agreement
rphmeier Dec 18, 2017
adf8984
test for not concluding on different prepares
rphmeier Dec 18, 2017
0112657
return summary upon statement import
rphmeier Dec 18, 2017
6a7c2c0
accept bft agreement on proposal not locally submitted
rphmeier Dec 18, 2017
b617079
check justification set for BFT
rphmeier Dec 18, 2017
e3a046d
BFT rewrite: vote accumulator with tests
rphmeier Dec 21, 2017
02ac220
squash some warnings
rphmeier Dec 21, 2017
a93b231
a few more tests for the accumulator
rphmeier Dec 22, 2017
a16bfd2
add sender to table's signed statement
rphmeier Dec 22, 2017
28ef13d
implement honest node strategy for BFT
rphmeier Dec 27, 2017
a52569e
inex -> index
rphmeier Dec 27, 2017
dfa1c12
import and broadcast lock proofs
rphmeier Dec 27, 2017
800ce6f
poll repeatedly when state changes
rphmeier Dec 27, 2017
92d8510
don't broadcast advance vote immediately if locked
rphmeier Dec 27, 2017
fefb5ca
do not check validity of locked candidate
rphmeier Dec 27, 2017
0c7928d
basic tests for the strategy
rphmeier Dec 27, 2017
409920a
remove unused context trait and fix warning
rphmeier Dec 29, 2017
922d547
address some review grumbles
rphmeier Dec 29, 2017
e594f61
address some more review nits
rphmeier Dec 29, 2017
f8b160f
fix lock import logic and add a test
rphmeier Dec 29, 2017
48712d6
fix spaces
rphmeier Dec 29, 2017
91fb389
fix a couple more style grumbles
rphmeier Dec 31, 2017
443d3ef
more type-safe justifications
rphmeier Jan 1, 2018
34f28c7
rename Communication enum variants
rphmeier Jan 1, 2018
0951a3b
improve some panic guard proofs
rphmeier Jan 1, 2018
96cc399
add trailing comma
rphmeier Jan 1, 2018
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
28 changes: 18 additions & 10 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 @@ -9,6 +9,7 @@ polkadot-cli = { path = "cli", version = "0.1" }

[workspace]
members = [
"candidate-agreement",
"client",
"collator",
"contracts",
Expand Down
8 changes: 8 additions & 0 deletions candidate-agreement/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "polkadot-candidate-agreement"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]

[dependencies]
futures = "0.1"
polkadot-primitives = { path = "../primitives" }
Loading