From 570ccaa91b71c5b6e75309abdeea18fe793d778c Mon Sep 17 00:00:00 2001 From: nomaxg Date: Mon, 1 Apr 2024 12:26:13 -0400 Subject: [PATCH] separate out modules so they are parsed by the macro correctly --- sequencer/src/options.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sequencer/src/options.rs b/sequencer/src/options.rs index 049c08928..3c7319026 100644 --- a/sequencer/src/options.rs +++ b/sequencer/src/options.rs @@ -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)]