3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 02:05:53 +00:00

Print outpoint data in Transaction toString() output

This commit is contained in:
Mike Hearn 2012-02-09 16:14:45 +01:00
parent 23279aff5f
commit 82e426a7eb

View File

@ -502,6 +502,8 @@ public class Transaction extends ChildMessage implements Serializable {
try { try {
s.append(in.getScriptSig().getFromAddress().toString()); s.append(in.getScriptSig().getFromAddress().toString());
s.append(" / ");
s.append(in.getOutpoint().toString());
} catch (Exception e) { } catch (Exception e) {
s.append("[exception: ").append(e.getMessage()).append("]"); s.append("[exception: ").append(e.getMessage()).append("]");
} }