3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-07 06:44:16 +00:00

Fix KeyChainGroup.toString double keys output

This commit is contained in:
Kosta Korenkov 2014-08-05 01:41:04 +04:00 committed by Mike Hearn
parent 299879c418
commit fa3037a4b2

View File

@ -868,8 +868,6 @@ public class KeyChainGroup {
for (ECKey key : chain.getKeys())
formatKeyWithAddress(includePrivateKeys, key, builder2);
}
for (ECKey key : chain.getKeys())
formatKeyWithAddress(includePrivateKeys, key, builder2);
chainStrs.add(builder2.toString());
}
builder.append(Joiner.on(String.format("%n")).join(chainStrs));