Constructors
Declared in <primitives/transaction.h>
Constructs a null output.
CTxOut();
» more...
Constructs an output with a given value and spending script.
CTxOut(
CAmount const& nValueIn,
CScript scriptPubKeyIn);
» more...
| Name | Description |
|---|---|
| nValueIn | The amount carried by the output. |
| scriptPubKeyIn | The script defining the spending conditions. |