Skip to content

Commit

Permalink
Make TaskScheduler in rmc public
Browse files Browse the repository at this point in the history
  • Loading branch information
woocash2 committed Nov 12, 2024
1 parent b50ce65 commit 7e172b7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions consensus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aleph-bft"
version = "0.37.2"
version = "0.37.3"
edition = "2021"
authors = ["Cardinal Cryptography"]
categories = ["algorithms", "data-structures", "cryptography", "database"]
Expand All @@ -13,7 +13,7 @@ readme = "../README.md"
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."

[dependencies]
aleph-bft-rmc = { path = "../rmc", version = "0.13" }
aleph-bft-rmc = { path = "../rmc", version = "0.14" }
aleph-bft-types = { path = "../types", version = "0.14" }
anyhow = "1.0"
async-trait = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion rmc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aleph-bft-rmc"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
authors = ["Cardinal Cryptography"]
categories = ["algorithms", "cryptography"]
Expand Down
2 changes: 1 addition & 1 deletion rmc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mod scheduler;
mod service;

pub use handler::Handler;
pub use scheduler::DoublingDelayScheduler;
pub use scheduler::{DoublingDelayScheduler, TaskScheduler};
pub use service::Service;

/// An RMC message consisting of either a signed (indexed) hash, or a multisigned hash.
Expand Down

0 comments on commit 7e172b7

Please sign in to comment.