mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 22:58:32 +01:00
Print outpoint data in Transaction toString() output
This commit is contained in:
parent
23279aff5f
commit
82e426a7eb
1 changed files with 2 additions and 0 deletions
|
@ -502,6 +502,8 @@ public class Transaction extends ChildMessage implements Serializable {
|
|||
|
||||
try {
|
||||
s.append(in.getScriptSig().getFromAddress().toString());
|
||||
s.append(" / ");
|
||||
s.append(in.getOutpoint().toString());
|
||||
} catch (Exception e) {
|
||||
s.append("[exception: ").append(e.getMessage()).append("]");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue