diff --git a/node_runner/src/lib.rs b/node_runner/src/lib.rs index d8a957c..4c5e698 100644 --- a/node_runner/src/lib.rs +++ b/node_runner/src/lib.rs @@ -11,6 +11,7 @@ pub async fn main_runner() -> Result<()> { let _http_server_handle = http_server.handle(); tokio::spawn(http_server); + #[allow(clippy::empty_loop)] loop { //ToDo: Insert activity into main loop } diff --git a/sequencer_runner/src/lib.rs b/sequencer_runner/src/lib.rs index 181b8cf..1c9ed3c 100644 --- a/sequencer_runner/src/lib.rs +++ b/sequencer_runner/src/lib.rs @@ -11,6 +11,7 @@ pub async fn main_runner() -> Result<()> { let _http_server_handle = http_server.handle(); tokio::spawn(http_server); + #[allow(clippy::empty_loop)] loop { //ToDo: Insert activity into main loop }