mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 03:35:51 +00:00
Add newlines per PR Comments
This commit is contained in:
@@ -23,4 +23,4 @@ AccountInfoRequestParams requestParams = AccountInfoRequestParams.of(classicAddr
|
||||
AccountInfoResult accountInfoResult = xrplClient.accountInfo(requestParams);
|
||||
|
||||
// Print the result
|
||||
System.out.println(accountInfoResult);
|
||||
System.out.println(accountInfoResult);
|
||||
|
||||
@@ -244,5 +244,4 @@ public class IssueToken {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -73,4 +73,4 @@ Payment payment = Payment.builder()
|
||||
.build();
|
||||
|
||||
SingleSignedTransaction<Payment> signedPayment = derivedKeySignatureService.sign(privateKeyReference, payment);
|
||||
System.out.println("Signed Payment: " + signedPayment.signedTransaction());
|
||||
System.out.println("Signed Payment: " + signedPayment.signedTransaction());
|
||||
|
||||
@@ -17,7 +17,7 @@ AccountInfoRequestParams requestParams = AccountInfoRequestParams.builder()
|
||||
AccountInfoResult accountInfoResult = xrplClient.accountInfo(requestParams);
|
||||
UnsignedInteger sequence = accountInfoResult.accountData().sequence();
|
||||
|
||||
// Request current fee information from rippled
|
||||
// Request current fee information from rippled
|
||||
FeeResult feeResult = xrplClient.fee();
|
||||
XrpCurrencyAmount openLedgerFee = feeResult.drops().openLedgerFee();
|
||||
|
||||
@@ -97,4 +97,4 @@ transactionResult.metadata().ifPresent(metadata -> {
|
||||
metadata.deliveredAmount().ifPresent(deliveredAmount ->
|
||||
System.out.println("XRP Delivered: " + ((XrpCurrencyAmount) deliveredAmount).toXrp()));
|
||||
}
|
||||
);
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user