Skip to content

Commit fe09add

Browse files
authored
A0-4569: Make initial unit collection more independent (#549)
* Make initial unit collection more independent * Clearer complement calculation
1 parent 1439f5b commit fe09add

File tree

16 files changed

+260
-237
lines changed

16 files changed

+260
-237
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ More details are available [in the book][reference-link-implementation-details].
6060
- Import AlephBFT in your crate
6161
```toml
6262
[dependencies]
63-
aleph-bft = "^0.43"
63+
aleph-bft = "^0.44"
6464
```
6565
- The main entry point is the `run_session` function, which returns a Future that runs the
6666
consensus algorithm.

consensus/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aleph-bft"
3-
version = "0.43.0"
3+
version = "0.44.0"
44
edition = "2021"
55
authors = ["Cardinal Cryptography"]
66
categories = ["algorithms", "data-structures", "cryptography", "database"]
@@ -13,8 +13,8 @@ readme = "../README.md"
1313
description = "AlephBFT is an asynchronous and Byzantine fault tolerant consensus protocol aimed at ordering arbitrary messages (transactions). It has been designed to continuously operate even in the harshest conditions: with no bounds on message-delivery delays and in the presence of malicious actors. This makes it an excellent fit for blockchain-related applications."
1414

1515
[dependencies]
16-
aleph-bft-rmc = { path = "../rmc", version = "0.14" }
17-
aleph-bft-types = { path = "../types", version = "0.14" }
16+
aleph-bft-rmc = { path = "../rmc", version = "0.15" }
17+
aleph-bft-types = { path = "../types", version = "0.15" }
1818
anyhow = "1.0"
1919
async-trait = "0.1"
2020
codec = { package = "parity-scale-codec", version = "3.0", default-features = false, features = ["derive"] }

0 commit comments

Comments
 (0)