mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-05-18 22:50:31 -04:00
use tokio::time::sleep instead of std:🧵:sleep
This commit is contained in:
parent
96115da039
commit
31c23a24ac
1 changed files with 3 additions and 2 deletions
|
@ -1,8 +1,9 @@
|
|||
use crate::testutils::init_tracing;
|
||||
use monero_harness::{Monero, MoneroWalletRpc};
|
||||
use spectral::prelude::*;
|
||||
use std::{thread::sleep, time::Duration};
|
||||
use std::time::Duration;
|
||||
use testcontainers::clients::Cli;
|
||||
use tokio::time::sleep;
|
||||
|
||||
mod testutils;
|
||||
|
||||
|
@ -67,6 +68,6 @@ async fn wait_for_wallet_to_catch_up(wallet: &MoneroWalletRpc, expected_balance:
|
|||
if balance == expected_balance || max_retry == retry {
|
||||
break;
|
||||
}
|
||||
sleep(Duration::from_secs(1));
|
||||
sleep(Duration::from_secs(1)).await;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue