mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 06:47:54 +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 = "???";
|
script = "???";
|
||||||
script2 = "???";
|
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) {
|
for (TransactionInput in : inputs) {
|
||||||
s.append(" ");
|
s.append(" ");
|
||||||
|
|
Loading…
Add table
Reference in a new issue