diff --git a/node_core/src/lib.rs b/node_core/src/lib.rs index 3fd76a3..23437ab 100644 --- a/node_core/src/lib.rs +++ b/node_core/src/lib.rs @@ -69,7 +69,10 @@ impl NodeCore { wrapped_chain_height_thread.store(next_block, Ordering::Relaxed); } else { - tokio::time::sleep(std::time::Duration::from_secs(config.seq_poll_timeout_secs)).await; + tokio::time::sleep(std::time::Duration::from_secs( + config.seq_poll_timeout_secs, + )) + .await; } } });