-
- All Implemented Interfaces:
public final class TxOut
A transaction output, which defines new coins to be created from old ones.
-
-
Field Summary
Fields Modifier and Type Field Description private ULong
value
private Script
scriptPubkey
-
Method Summary
Modifier and Type Method Description final ULong
getValue()
The value of the output, in satoshis. final Unit
setValue(ULong value)
The value of the output, in satoshis. final Script
getScriptPubkey()
The script which must be satisfied for the output to be spent. final Unit
setScriptPubkey(Script scriptPubkey)
The script which must be satisfied for the output to be spent. -
-
Method Detail
-
getScriptPubkey
final Script getScriptPubkey()
The script which must be satisfied for the output to be spent.
-
setScriptPubkey
final Unit setScriptPubkey(Script scriptPubkey)
The script which must be satisfied for the output to be spent.
-
-
-
-