mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-05-02 06:46:06 -04:00
Use while instead of loop
This commit is contained in:
parent
c86a82b315
commit
def3399d1c
1 changed files with 1 additions and 5 deletions
|
@ -215,11 +215,7 @@ pub async fn poll_until_block_height_is_gte<B>(client: &B, target: u32)
|
|||
where
|
||||
B: BlockHeight,
|
||||
{
|
||||
loop {
|
||||
if client.block_height().await >= target {
|
||||
return;
|
||||
}
|
||||
|
||||
while client.block_height().await < target {
|
||||
tokio::time::delay_for(std::time::Duration::from_secs(1)).await;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue