Skip to content

Commit

Permalink
[service/account_funding] restore previous behaviour of waiting until…
Browse files Browse the repository at this point in the history
… in block only.
  • Loading branch information
clangenb committed Sep 15, 2023
1 parent fdf4e2e commit 6511392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/src/account_funding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ fn bootstrap_funds_from_alice(
println!("[+] send extrinsic: bootstrap funding Enclave from Alice's funds");
let xt = alice_signer_api
.balance_transfer_allow_death(MultiAddress::Id(accountid.clone()), funding_amount);
let xt_report = alice_signer_api.submit_and_watch_extrinsic_until(xt, XtStatus::Finalized)?;
let xt_report = alice_signer_api.submit_and_watch_extrinsic_until(xt, XtStatus::InBlock)?;
info!(
"[<] L1 extrinsic success. extrinsic hash: {:?} / status: {:?}",
xt_report.extrinsic_hash, xt_report.status
Expand Down

0 comments on commit 6511392

Please sign in to comment.