SignTransaction overloads
Declared in <wallet/wallet.h>
Fetch the inputs and sign with SIGHASH_ALL.
[[requires_capability(0x7fbc76bfd9f8), requires_capability(0x7fbc81b773b8), requires_capability(0x7fbc7e015238), requires_capability(0x7fbc7e2446e8), requires_capability(0x7fbc8e715328)]]
bool
SignTransaction(CMutableTransaction& tx) const;
» more...
Sign the tx given the input coins and sighash.
bool
SignTransaction(
CMutableTransaction& tx,
std::map<COutPoint, Coin> const& coins,
int sighash,
std::map<int, bilingual_str>& input_errors) const;
» more...
true if all inputs were signed.
| Name | Description |
|---|---|
| tx | The transaction to sign in place. |
| coins | The input coins spent by the transaction. |
| sighash | The signature hash type to use. |
| input_errors | Set to per-input error messages for inputs that fail. |