mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-11-02 05:27:17 +00:00
Merge branch 'master' of https://code.google.com/p/bitcoinj
Conflicts: src/com/google/bitcoin/core/Transaction.java
This commit is contained in:
@@ -518,6 +518,13 @@ public class Transaction extends ChildMessage implements Serializable {
|
||||
s.append(" ");
|
||||
s.append(bitcoinValueToFriendlyString(out.getValue()));
|
||||
s.append(" BTC");
|
||||
if (!out.isAvailableForSpending()) {
|
||||
s.append(" Spent");
|
||||
}
|
||||
if (out.getSpentBy() != null) {
|
||||
s.append(" by ");
|
||||
s.append(out.getSpentBy().getParentTransaction().getHashAsString());
|
||||
}
|
||||
} catch (Exception e) {
|
||||
s.append("[exception: ").append(e.getMessage()).append("]");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user