Skip to content

Commit

Permalink
rm storage-sql module requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
imabdulbasit committed May 20, 2024
1 parent 80712ca commit 814e2bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions public-env-vars.toml
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,4 @@ variables = [
"BLOCK",
"FROM",
"TO"
]

]
2 changes: 1 addition & 1 deletion sequencer/api/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ DOC = "Get the Hotshot configuration for the current node."
[route.env]
PATH = ["/env"]
METHOD = "GET"
DOC = "Get all ESPRESSO environment variables set for the current node."
DOC = "Get all ESPRESSO environment variables defined in public-env-vars.toml file for the current node"
2 changes: 1 addition & 1 deletion sequencer/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ module!("submit", api::options::Submit, requires: "http");
module!("status", api::options::Status, requires: "http");
module!("state", api::options::State, requires: "http", "storage-sql");
module!("catchup", api::options::Catchup, requires: "http");
module!("config", api::options::Config, requires: "http", "storage-sql");
module!("config", api::options::Config, requires: "http");
module!("hotshot-events", api::options::HotshotEvents, requires: "http");
module!("explorer", api::options::Explorer, requires: "http", "storage-sql");

Expand Down

0 comments on commit 814e2bc

Please sign in to comment.