Skip to content

Commit

Permalink
Merge pull request EspressoSystems#1292 from EspressoSystems/fix-modu…
Browse files Browse the repository at this point in the history
…le-requirements

Fix state module dependency string
  • Loading branch information
nomaxg authored Apr 1, 2024
2 parents c6862b7 + 1434287 commit f9bfa30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sequencer/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ module!("http", api::options::Http);
module!("query", api::options::Query, requires: "http");
module!("submit", api::options::Submit, requires: "http");
module!("status", api::options::Status, requires: "http");
module!("state", api::options::State, requires: "http, storage-sql");
module!("state", api::options::State, requires: "http", "storage-sql");
module!("catchup", api::options::Catchup, requires: "http");

#[derive(Clone, Debug, Args)]
Expand Down

0 comments on commit f9bfa30

Please sign in to comment.