mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-13 02:35:52 +00:00
Block: In toString(), print newline between transactions.
This commit is contained in:
parent
8910cd7a25
commit
b303490fe3
@ -491,7 +491,7 @@ public class Block extends Message {
|
||||
if (transactions != null && transactions.size() > 0) {
|
||||
s.append(" with ").append(transactions.size()).append(" transaction(s):\n");
|
||||
for (Transaction tx : transactions) {
|
||||
s.append(tx);
|
||||
s.append(tx).append('\n');
|
||||
}
|
||||
}
|
||||
return s.toString();
|
||||
|
Loading…
x
Reference in New Issue
Block a user