From 44b46146c1cf090ebe210bd202b9d7cf54bddbfc Mon Sep 17 00:00:00 2001 From: Oleksandr Pravdyvyi Date: Thu, 5 Dec 2024 13:07:15 +0200 Subject: [PATCH] fix: format commit --- node_core/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; } } });