forked from Qortal/qortal
Updated another reference of SimpleTransaction::getTimestamp
This commit is contained in:
parent
ca7d58c272
commit
ef249066cd
@ -75,7 +75,7 @@ public class GetWalletTransactions {
|
||||
|
||||
System.out.println(String.format("Found %d transaction%s", transactions.size(), (transactions.size() != 1 ? "s" : "")));
|
||||
|
||||
for (SimpleTransaction transaction : transactions.stream().sorted(Comparator.comparingInt(SimpleTransaction::getTimestamp)).collect(Collectors.toList()))
|
||||
for (SimpleTransaction transaction : transactions.stream().sorted(Comparator.comparingLong(SimpleTransaction::getTimestamp)).collect(Collectors.toList()))
|
||||
System.out.println(String.format("%s", transaction));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user