mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-23 14:40:40 +01:00
Transaction: Better toString() for coinbases
This commit is contained in:
parent
d9c21d58c7
commit
83136a2b02
1 changed files with 2 additions and 1 deletions
|
@ -594,7 +594,8 @@ public class Transaction extends ChildMessage implements Serializable {
|
|||
script = "???";
|
||||
script2 = "???";
|
||||
}
|
||||
return " == COINBASE TXN (scriptSig " + script + ") (scriptPubKey " + script2 + ")\n";
|
||||
s.append(" == COINBASE TXN (scriptSig " + script + ") (scriptPubKey " + script2 + ")\n");
|
||||
return s.toString();
|
||||
}
|
||||
for (TransactionInput in : inputs) {
|
||||
s.append(" ");
|
||||
|
|
Loading…
Add table
Reference in a new issue