refactor(hermes): no need to Box futures

This commit is contained in:
Reisen 2024-04-08 10:36:08 +00:00 committed by Reisen
parent d627a49764
commit 110c6dcea3
1 changed files with 5 additions and 5 deletions

View File

@ -66,11 +66,11 @@ async fn init() -> Result<()> {
// Spawn all worker tasks, and wait for all to complete (which will happen if a shutdown
// signal has been observed).
let tasks = join_all([
Box::pin(spawn(network::wormhole::spawn(opts.clone(), store.clone()))),
Box::pin(spawn(network::pythnet::spawn(opts.clone(), store.clone()))),
Box::pin(spawn(metrics_server::run(opts.clone(), store.clone()))),
Box::pin(spawn(api::spawn(opts.clone(), store.clone(), update_tx))),
let tasks = join_all(vec![
spawn(network::wormhole::spawn(opts.clone(), store.clone())),
spawn(network::pythnet::spawn(opts.clone(), store.clone())),
spawn(metrics_server::run(opts.clone(), store.clone())),
spawn(api::spawn(opts.clone(), store.clone(), update_tx)),
])
.await;