We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07e43c6 commit f2a4e73Copy full SHA for f2a4e73
tests/common/mod.rs
@@ -96,10 +96,7 @@ pub async fn create_did(
96
let (address, key_id, pub_key_jwk) = get_address(storage).await.context("failed to get address with funds")?;
97
98
// Fund the account
99
- // WORKAROUND: Ignore the resullts of the faucet request as sometime the
100
- // request will fail but the funds will be
101
- // available.
102
- let _ = request_faucet_funds(address).await;
+ request_faucet_funds(address).await?;
103
104
let signer = StorageSigner::new(storage, key_id.clone(), pub_key_jwk);
105
0 commit comments