mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-13 10:45:51 +00:00
Block: Fix missing linefeed after hash in toString().
This commit is contained in:
parent
6b95012d1f
commit
7001c479a3
@ -478,7 +478,7 @@ public class Block extends Message {
|
||||
public String toString() {
|
||||
StringBuilder s = new StringBuilder();
|
||||
s.append(" block: \n");
|
||||
s.append(" hash: ").append(getHashAsString());
|
||||
s.append(" hash: ").append(getHashAsString()).append('\n');
|
||||
s.append(" version: ").append(version);
|
||||
String bips = Joiner.on(", ").skipNulls().join(isBIP34() ? "BIP34" : null, isBIP66() ? "BIP66" : null,
|
||||
isBIP65() ? "BIP65" : null, isBIP101() ? "BIP101" : null);
|
||||
|
Loading…
x
Reference in New Issue
Block a user