bitview: reorg part 8

This commit is contained in:
nym21
2025-09-29 14:17:49 +02:00
parent 7407c032e5
commit 62d4b35c93
39 changed files with 319 additions and 3937 deletions
+4 -3
View File
@@ -121,10 +121,11 @@ pub fn run() -> color_eyre::Result<()> {
Ok(()) as Result<()>
};
let _handle = tokio::runtime::Builder::new_multi_thread()
let runtime = tokio::runtime::Builder::new_multi_thread()
.enable_all()
.build()?
.spawn(future);
.build()?;
let _handle = runtime.spawn(future);
loop {
wait_for_synced_node(rpc)?;