3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-13 02:35:52 +00:00

Transaction: Fix wrong line ending in toString().

This commit is contained in:
Andreas Schildbach 2016-02-29 15:58:59 +01:00
parent cd830bb128
commit 8818f6ff0c

View File

@ -623,7 +623,7 @@ public class Transaction extends ChildMessage {
s.append(String.format(Locale.US, " time locked until %s%n", time));
}
if (isOptInFullRBF()) {
s.append(" opts into full replace-by-fee%n");
s.append(" opts into full replace-by-fee\n");
}
if (inputs.size() == 0) {
s.append(String.format(Locale.US, " INCOMPLETE: No inputs!%n"));