mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-15 11:45:51 +00:00
Block: toString() cosmetics.
This commit is contained in:
parent
a22e2f5474
commit
f70086ae64
@ -487,7 +487,7 @@ public class Block extends Message {
|
||||
s.append('\n');
|
||||
s.append(" previous block: ").append(getPrevBlockHash()).append("\n");
|
||||
s.append(" merkle root: ").append(getMerkleRoot()).append("\n");
|
||||
s.append(" time: [").append(time).append("] ").append(Utils.dateTimeFormat(time * 1000)).append("\n");
|
||||
s.append(" time: ").append(time).append(" (").append(Utils.dateTimeFormat(time * 1000)).append(")\n");
|
||||
s.append(" difficulty target (nBits): ").append(difficultyTarget).append("\n");
|
||||
s.append(" nonce: ").append(nonce).append("\n");
|
||||
if (transactions != null && transactions.size() > 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user