Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jparr721 committed May 31, 2024
1 parent 1208386 commit df7adee
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 26 deletions.
43 changes: 22 additions & 21 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ futures = "0.3"
hotshot = { git = "https://github.com/EspressoSystems/hotshot", tag = "rc-0.5.56" }
# Hotshot imports
hotshot-builder-api = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "rc-0.5.56" }
hotshot-builder-core = { git = "https://github.com/EspressoSystems/hotshot-builder-core", branch = "daily-build" }
hotshot-events-service = { git = "https://github.com/EspressoSystems/hotshot-events-service.git", branch = "daily-build" }
hotshot-builder-core = { git = "https://github.com/EspressoSystems/hotshot-builder-core", tag = "0.1.25" }
hotshot-events-service = { git = "https://github.com/EspressoSystems/hotshot-events-service.git", tag = "0.1.25" }
hotshot-orchestrator = { git = "https://github.com/EspressoSystems/hotshot", tag = "rc-0.5.56" }
hotshot-query-service = { git = "https://github.com/EspressoSystems/hotshot-query-service", branch = "daily-build" }
hotshot-query-service = { git = "https://github.com/EspressoSystems/hotshot-query-service", tag = "0.1.28" }
hotshot-stake-table = { git = "https://github.com/EspressoSystems/hotshot", tag = "rc-0.5.56" }
hotshot-state-prover = { version = "0.1.0", path = "hotshot-state-prover" }
hotshot-task = { git = "https://github.com/EspressoSystems/hotshot", tag = "rc-0.5.56" }
Expand Down
4 changes: 2 additions & 2 deletions sequencer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ pub mod testing {
use hotshot::types::{EventType::Decide, Message};
use hotshot_stake_table::vec_based::StakeTable;
use hotshot_testing::block_builder::{
BuilderTask, SimpleBuilderImplementation, TestBuilderImplementation,
BuilderTask, SimpleBuilderConfig, SimpleBuilderImplementation, TestBuilderImplementation,
};
use hotshot_types::{
event::LeafInfo,
Expand All @@ -529,7 +529,7 @@ pub mod testing {
pub async fn run_test_builder() -> (Option<Box<dyn BuilderTask<SeqTypes>>>, Url) {
<SimpleBuilderImplementation as TestBuilderImplementation<SeqTypes>>::start(
TestConfig::NUM_NODES,
(),
SimpleBuilderConfig { port: 1234 },
)
.await
}
Expand Down

0 comments on commit df7adee

Please sign in to comment.