Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix local demo #1438

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ESPRESSO_CDN_SERVER_METRICS_PORT=9090
ESPRESSO_ORCHESTRATOR_PORT=40001
ESPRESSO_ORCHESTRATOR_NUM_NODES=5
ESPRESSO_ORCHESTRATOR_START_DELAY=5s
ESPRESSO_ORCHESTRATOR_NEXT_VIEW_TIMEOUT=30s
ESPRESSO_ORCHESTRATOR_NEXT_VIEW_TIMEOUT=12s
ESPRESSO_ORCHESTRATOR_BUILDER_TIMEOUT=2s
ESPRESSO_SEQUENCER_CDN_ENDPOINT=marshal-0:${ESPRESSO_CDN_SERVER_PORT}
ESPRESSO_SEQUENCER_ORCHESTRATOR_URL=http://orchestrator:${ESPRESSO_ORCHESTRATOR_PORT}
Expand Down
12 changes: 2 additions & 10 deletions builder/src/non_permissioned.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,17 +166,9 @@ impl BuilderConfig {
// start the hotshot api service
run_builder_api_service(hotshot_builder_apis_url.clone(), proxy_global_state);

let events_url = hotshot_events_api_url
.clone()
.join("hotshot-events/events")
.unwrap();

tracing::info!(
"Running permissionless builder against hotshot events API at {}",
events_url.to_string()
);

// spawn the builder service
let events_url = hotshot_events_api_url.clone();
tracing::info!("Running permissionless builder against hotshot events API at {events_url}",);
async_spawn(async move {
let res = run_non_permissioned_standalone_builder_service(
tx_sender,
Expand Down
Loading