Skip to content

Commit

Permalink
Wallet.toString(): Include includeLookahead keys
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer authored and oscarguindzberg committed Dec 20, 2018
1 parent ec28f6b commit 006821a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1338,6 +1338,8 @@ public String toString(boolean includePrivateKeys, NetworkParameters params) {
}
builder.append("Key to watch: ").append(watchingKey.serializePubB58(params)).append('\n');
formatAddresses(includePrivateKeys, params, builder);
for (ECKey key : getKeys(true))
key.formatKeyWithAddress(includePrivateKeys, builder, params);
return builder.toString();
}

Expand Down

0 comments on commit 006821a

Please sign in to comment.