diff --git a/Cargo.lock b/Cargo.lock index 2a6bea7d8..66e5ce319 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4058,7 +4058,7 @@ dependencies = [ [[package]] name = "hotshot-builder-core-refactored" version = "0.1.58" -source = "git+https://github.com/EspressoSystems/marketplace-builder-core?rev=06e9bf982cc84fc79c5394490b2a73cfcfb7c935#06e9bf982cc84fc79c5394490b2a73cfcfb7c935" +source = "git+https://github.com/EspressoSystems/marketplace-builder-core?tag=0.1.58#7df48a9099241c92f4946dd13a9f86d90fb23768" dependencies = [ "anyhow", "async-broadcast", @@ -6214,7 +6214,7 @@ dependencies = [ [[package]] name = "marketplace-builder-core" version = "0.1.58" -source = "git+https://github.com/EspressoSystems/marketplace-builder-core?rev=06e9bf982cc84fc79c5394490b2a73cfcfb7c935#06e9bf982cc84fc79c5394490b2a73cfcfb7c935" +source = "git+https://github.com/EspressoSystems/marketplace-builder-core?tag=0.1.58#7df48a9099241c92f4946dd13a9f86d90fb23768" dependencies = [ "anyhow", "async-broadcast", @@ -6239,7 +6239,7 @@ dependencies = [ [[package]] name = "marketplace-builder-shared" version = "0.1.58" -source = "git+https://github.com/EspressoSystems/marketplace-builder-core?rev=06e9bf982cc84fc79c5394490b2a73cfcfb7c935#06e9bf982cc84fc79c5394490b2a73cfcfb7c935" +source = "git+https://github.com/EspressoSystems/marketplace-builder-core?tag=0.1.58#7df48a9099241c92f4946dd13a9f86d90fb23768" dependencies = [ "anyhow", "async-broadcast", diff --git a/Cargo.toml b/Cargo.toml index bc55887ef..64716f2bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,9 +65,9 @@ tokio = { version = "1", default-features = false, features = [ hotshot = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.82" } # Hotshot imports hotshot-builder-api = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.82" } -hotshot-builder-core = { git = "https://github.com/EspressoSystems/marketplace-builder-core", rev = "06e9bf982cc84fc79c5394490b2a73cfcfb7c935", package = "hotshot-builder-core-refactored" } -marketplace-builder-core = { git = "https://github.com/EspressoSystems/marketplace-builder-core", rev = "06e9bf982cc84fc79c5394490b2a73cfcfb7c935" } -marketplace-builder-shared = { git = "https://github.com/EspressoSystems/marketplace-builder-core", rev = "06e9bf982cc84fc79c5394490b2a73cfcfb7c935" } +hotshot-builder-core = { git = "https://github.com/EspressoSystems/marketplace-builder-core", tag = "0.1.58", package = "hotshot-builder-core-refactored" } +marketplace-builder-core = { git = "https://github.com/EspressoSystems/marketplace-builder-core", tag = "0.1.58" } +marketplace-builder-shared = { git = "https://github.com/EspressoSystems/marketplace-builder-core", tag = "0.1.58" } hotshot-events-service = { git = "https://github.com/EspressoSystems/hotshot-events-service.git", tag = "0.1.56" } hotshot-orchestrator = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.82" } hotshot-query-service = { git = "https://github.com/EspressoSystems/hotshot-query-service", tag = "v0.1.75" } diff --git a/sequencer/src/lib.rs b/sequencer/src/lib.rs index a66279aab..81a2994e5 100644 --- a/sequencer/src/lib.rs +++ b/sequencer/src/lib.rs @@ -637,7 +637,7 @@ pub mod testing { let global_state: Arc>> = GlobalState::new( BuilderConfig { builder_keys: (builder_key_pair.fee_account(), builder_key_pair), - api_timeout: Duration::from_secs(1), + api_timeout: Duration::from_secs(60), tx_capture_timeout: Duration::from_millis(100), txn_garbage_collect_duration: Duration::from_secs(60), txn_channel_capacity: BUILDER_CHANNEL_CAPACITY_FOR_TEST,