fix wait for sol bug

This commit is contained in:
Valentyn Faychuk 2025-01-10 01:38:06 +02:00
parent 3ceb4227cc
commit 855e9ab28b
Signed by: valy
GPG Key ID: F1AB995E20FEADC5

@ -139,9 +139,9 @@ async fn wait_for_sol(client: &RpcClient, pubkey: &Pubkey) {
} }
Err(e) => { Err(e) => {
println!("Could not get balance: {e:?}"); println!("Could not get balance: {e:?}");
sleep(Duration::from_secs(30)).await;
}, },
} }
sleep(Duration::from_secs(30)).await;
} }
} }