Skip to content

Commit

Permalink
Add indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
julia-zack committed Aug 28, 2023
1 parent 575c758 commit 25f9abe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/co/rsk/bitcoinj/wallet/Wallet.java
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ public String toString(boolean includePrivateKeys, boolean includeTransactions,
Coin estimatedBalance = getBalance(BalanceType.ESTIMATED);
Coin availableBalance = getBalance(BalanceType.AVAILABLE_SPENDABLE);
builder.append("Wallet containing ").append(estimatedBalance.toFriendlyString()).append(" (spendable: ")
.append(availableBalance.toFriendlyString()).append(") in:\n");
.append(availableBalance.toFriendlyString()).append(") in:\n");
if (!watchedScripts.isEmpty()) {
builder.append("\nWatched scripts:\n");
for (Script script : watchedScripts) {
Expand Down Expand Up @@ -576,7 +576,7 @@ public void completeTx(SendRequest req) throws InsufficientMoneyException {
}

log.info("Completing send tx with {} outputs totalling {} and a fee of {}/kB", req.tx.getOutputs().size(),
value.toFriendlyString(), req.feePerKb.toFriendlyString());
value.toFriendlyString(), req.feePerKb.toFriendlyString());

// If any inputs have already been added, we don't need to get their value from wallet
Coin totalInput = Coin.ZERO;
Expand Down

0 comments on commit 25f9abe

Please sign in to comment.