mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-14 19:25:51 +00:00
Transaction: Print update time in toString().
This commit is contained in:
parent
5829b32535
commit
af0d2042d8
@ -638,6 +638,8 @@ public class Transaction extends ChildMessage {
|
||||
s.append(" ").append(getHashAsString()).append('\n');
|
||||
if (hasConfidence())
|
||||
s.append(" confidence: ").append(getConfidence()).append('\n');
|
||||
if (updatedAt != null)
|
||||
s.append(" updated: ").append(Utils.dateTimeFormat(updatedAt)).append('\n');
|
||||
if (isTimeLocked()) {
|
||||
s.append(" time locked until ");
|
||||
if (lockTime < LOCKTIME_THRESHOLD) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user