mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 22:58:32 +01:00
Correct a comment
This commit is contained in:
parent
82e426a7eb
commit
96a1e87f47
1 changed files with 2 additions and 2 deletions
|
@ -41,9 +41,9 @@ public class TransactionOutput extends ChildMessage implements Serializable {
|
||||||
// The script bytes are parsed and turned into a Script on demand.
|
// The script bytes are parsed and turned into a Script on demand.
|
||||||
private transient Script scriptPubKey;
|
private transient Script scriptPubKey;
|
||||||
|
|
||||||
// These fields are Java serialized but not BitCoin serialized. They are used for tracking purposes in our wallet
|
// These fields are Java serialized but not Bitcoin serialized. They are used for tracking purposes in our wallet
|
||||||
// only. If set to true, this output is counted towards our balance. If false and spentBy is null the tx output
|
// only. If set to true, this output is counted towards our balance. If false and spentBy is null the tx output
|
||||||
// was owned by us and was sent to somebody else. If false and spentBy is true it means this output was owned by
|
// was owned by us and was sent to somebody else. If false and spentBy is set it means this output was owned by
|
||||||
// us and used in one of our own transactions (eg, because it is a change output).
|
// us and used in one of our own transactions (eg, because it is a change output).
|
||||||
private boolean availableForSpending;
|
private boolean availableForSpending;
|
||||||
private TransactionInput spentBy;
|
private TransactionInput spentBy;
|
||||||
|
|
Loading…
Add table
Reference in a new issue