fix formatting

This commit is contained in:
nkramer44
2021-05-04 11:37:16 -04:00
parent e79a0494b1
commit 3db62a1ee0
3 changed files with 7 additions and 4 deletions

View File

@@ -12,7 +12,8 @@ final Address classicAddress = testWallet.classicAddress();
System.out.println("Classic Address: " + classicAddress);
// Fund the account using the testnet Faucet
final FaucetClient faucetClient = FaucetClient.construct(HttpUrl.get("https://faucet.altnet.rippletest.net"));
final FaucetClient faucetClient = FaucetClient
.construct(HttpUrl.get("https://faucet.altnet.rippletest.net"));
faucetClient.fundAccount(FundAccountRequest.of(classicAddress));
System.out.println("Funded the account using the Testnet faucet.");