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 3d43c65 commit 07e43c6Copy full SHA for 07e43c6
tests/common/mod.rs
@@ -96,7 +96,10 @@ 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
- request_faucet_funds(address).await?;
+ // 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;
103
104
let signer = StorageSigner::new(storage, key_id.clone(), pub_key_jwk);
105
0 commit comments