Skip to content

Commit

Permalink
Update orchestrator in release-gambit (#2060)
Browse files Browse the repository at this point in the history
  • Loading branch information
ss-es authored Sep 24, 2024
1 parent 9958b49 commit d1fb4fd
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 54 deletions.
80 changes: 40 additions & 40 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ time = "0.3"
trait-set = "0.3.0"

[patch."https://github.com/EspressoSystems/HotShot.git"]
hotshot = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch2" }
hotshot-builder-api = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch2" }
hotshot-orchestrator = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch2" }
hotshot-stake-table = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch2" }
hotshot-task ={ git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch2" }
hotshot-task-impls ={ git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch2" }
hotshot-testing ={ git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch2" }
hotshot-types = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch2" }
libp2p-networking = { git = "https://github.com/EspressoSystems//HotShot.git", tag = "0.5.74-patch2" }
hotshot-example-types = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch2" }
hotshot = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch3" }
hotshot-builder-api = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch3" }
hotshot-orchestrator = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch3" }
hotshot-stake-table = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch3" }
hotshot-task ={ git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch3" }
hotshot-task-impls ={ git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch3" }
hotshot-testing ={ git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch3" }
hotshot-types = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch3" }
libp2p-networking = { git = "https://github.com/EspressoSystems//HotShot.git", tag = "0.5.74-patch3" }
hotshot-example-types = { git = "https://www.github.com/EspressoSystems/HotShot.git", tag = "0.5.74-patch3" }
5 changes: 2 additions & 3 deletions sequencer/src/api/data_source.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::{collections::HashSet, num::NonZeroUsize, time::Duration};
use std::{num::NonZeroUsize, time::Duration};

use anyhow::{bail, Context};
use async_trait::async_trait;
Expand Down Expand Up @@ -431,8 +431,7 @@ impl PublicNetworkConfig {
commit_sha: self.commit_sha,
builder: self.builder,
random_builder: self.random_builder,
public_keys: HashSet::new(),
enable_registration_verification: false,
public_keys: Vec::new(),
})
}
}
Expand Down
1 change: 0 additions & 1 deletion sequencer/src/bin/orchestrator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ async fn main() {
start_delay_seconds: args.start_delay.as_secs(),
manual_start_password: args.manual_start_password,
indexed_da: false,
enable_registration_verification: false,
..Default::default()
};

Expand Down

0 comments on commit d1fb4fd

Please sign in to comment.