mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-11-16 04:17:25 +00:00
Transaction: Better toString() for coinbases
This commit is contained in:
@@ -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(" ");
|
||||
|
||||
Reference in New Issue
Block a user