There was an error while loading. Please reload this page.
1 parent 10ea76e commit 1493806Copy full SHA for 1493806
1 file changed
mutiny-core/src/node.rs
@@ -555,6 +555,9 @@ impl<S: MutinyStorage> Node<S> {
555
let retry_stop = stop.clone();
556
let retry_chain_monitor = chain_monitor.clone();
557
utils::spawn(async move {
558
+ // sleep 3 seconds before checking, we won't have any pending updates on startup
559
+ sleep(3_000).await;
560
+
561
loop {
562
if retry_stop.load(Ordering::Relaxed) {
563
break;
0 commit comments