Skip to content

Commit

Permalink
Add explorer consideration to http options
Browse files Browse the repository at this point in the history
The http options currently aren't getting passed any explorer options
when configured.  This is due to missing a configuration call in
`init_with_storage` when adding the explorer options.
  • Loading branch information
Ayiga committed May 7, 2024
1 parent 99131f0 commit a45beea
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sequencer/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ where
if let Some(hotshot_events) = modules.hotshot_events {
http_opt = http_opt.hotshot_events(hotshot_events);
}
if let Some(explorer) = modules.explorer {
http_opt = http_opt.explorer(explorer);
}

http_opt
.serve(
Expand Down

0 comments on commit a45beea

Please sign in to comment.