Don't unwrap get_balance immediately in bench-tps move mode (#5685)
automerge
This commit is contained in:
parent
9f2119920c
commit
362a39a941
|
@ -767,13 +767,14 @@ fn fund_move_keys<T: Client>(
|
||||||
client.send_message(&[funding_key], tx.message).unwrap();
|
client.send_message(&[funding_key], tx.message).unwrap();
|
||||||
let mut balance = 0;
|
let mut balance = 0;
|
||||||
for _ in 0..20 {
|
for _ in 0..20 {
|
||||||
balance = client.get_balance(&funding_keys[0].pubkey()).unwrap();
|
if let Ok(balance_) = client.get_balance(&funding_keys[0].pubkey()) {
|
||||||
if balance > 0 {
|
if balance_ > 0 {
|
||||||
|
balance = balance_;
|
||||||
break;
|
break;
|
||||||
} else {
|
|
||||||
sleep(Duration::from_millis(100));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
sleep(Duration::from_millis(100));
|
||||||
|
}
|
||||||
assert!(balance > 0);
|
assert!(balance > 0);
|
||||||
info!("funded multiple funding accounts.. {:?}", balance);
|
info!("funded multiple funding accounts.. {:?}", balance);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue