![]() |
Bitcoin ABC 0.32.4
P2P Digital Currency
|
| void CWallet::CommitTransaction | ( | CTransactionRef | tx, |
| mapValue_t | mapValue, | ||
| std::vector< std::pair< std::string, std::string > > | orderForm, | ||
| bool | broadcast = true |
||
| ) |
Add the transaction to the wallet and maybe attempt to broadcast it.
Should be called after CreateTransaction. The broadcast flag can be set to false if you want to abort broadcasting the transaction.
| [in] | tx | The transaction to be broadcast. |
| [in] | mapValue | key-values to be set on the transaction. |
| [in] | orderForm | BIP 70 / BIP 21 order form details to be set on the transaction. |
| [in] | broadcast | Whether to broadcast this transaction. |
Definition at line 2196 of file wallet.cpp.
| bool CWallet::DelAddressBook | ( | const CTxDestination & | address | ) |
| TransactionError CWallet::FillPSBT | ( | PartiallySignedTransaction & | psbtx, |
| bool & | complete, | ||
| SigHashType | sighash_type = SigHashType().withForkId(), |
||
| bool | sign = true, |
||
| bool | bip32derivs = true |
||
| ) | const |
Fills out a PSBT with information from the wallet.
Fills in UTXOs if we have them. Tries to sign if sign=true. Sets complete if the PSBT is now complete (i.e. has all required signatures or signature-parts, and is ready to finalize.) Sets error and returns false if something goes wrong.
| [in] | psbtx | PartiallySignedTransaction to fill in |
| [out] | complete | indicates whether the PSBT is now complete |
| [in] | sighash_type | the sighash type to use when signing (if PSBT does not specify) |
| [in] | sign | whether to sign or not |
| [in] | bip32derivs | whether to fill in bip32 derivation information if available return error |
Definition at line 2122 of file wallet.cpp.
| unsigned int CWallet::GetKeyPoolSize | ( | ) | const |
Definition at line 2378 of file wallet.cpp.
| std::set< CTxDestination > CWallet::GetLabelAddresses | ( | const std::string & | label | ) | const |
| util::Result< CTxDestination > CWallet::GetNewChangeDestination | ( | const OutputType | type | ) |
Definition at line 2415 of file wallet.cpp.
| util::Result< CTxDestination > CWallet::GetNewDestination | ( | const OutputType | type, |
| const std::string & | label | ||
| ) |
Definition at line 2398 of file wallet.cpp.
| int64_t CWallet::GetOldestKeyPoolTime | ( | ) | const |
| bool ReserveDestination::GetReservedDestination | ( | CTxDestination & | pubkey, |
| bool | internal | ||
| ) |
Reserve an address.
Definition at line 2478 of file wallet.cpp.
| bool CWallet::IsLockedCoin | ( | const COutPoint & | outpoint | ) | const |
Definition at line 2531 of file wallet.cpp.
| void ReserveDestination::KeepDestination | ( | ) |
Keep the address.
Do not return it's key to the keypool when this object goes out of scope
Definition at line 2499 of file wallet.cpp.
| size_t CWallet::KeypoolCountExternalKeys | ( | ) | const |
Definition at line 2367 of file wallet.cpp.
| void CWallet::ListLockedCoins | ( | std::vector< COutPoint > & | vOutpts | ) | const |
Definition at line 2537 of file wallet.cpp.
| DBErrors CWallet::LoadWallet | ( | ) |
Definition at line 2243 of file wallet.cpp.
| void CWallet::LockCoin | ( | const COutPoint & | output | ) |
Definition at line 2516 of file wallet.cpp.
| void CWallet::MarkDestinationsDirty | ( | const std::set< CTxDestination > & | destinations | ) |
Marks all outputs in each one of the destinations dirty, so their cache is reset and does not return outdated information.
Definition at line 2439 of file wallet.cpp.
| void ReserveDestination::ReturnDestination | ( | ) |
Return reserved address.
Definition at line 2508 of file wallet.cpp.
| bool CWallet::SetAddressBook | ( | const CTxDestination & | address, |
| const std::string & | strName, | ||
| const std::string & | purpose | ||
| ) |
Definition at line 2326 of file wallet.cpp.
|
private |
Definition at line 2299 of file wallet.cpp.
| SigningResult CWallet::SignMessage | ( | const std::string & | message, |
| const PKHash & | pkhash, | ||
| std::string & | str_sig | ||
| ) | const |
Definition at line 2166 of file wallet.cpp.
| bool CWallet::SignTransaction | ( | CMutableTransaction & | tx | ) | const |
Definition at line 2075 of file wallet.cpp.
| bool CWallet::SignTransaction | ( | CMutableTransaction & | tx, |
| const std::map< COutPoint, Coin > & | coins, | ||
| SigHashType | sighash, | ||
| std::map< int, std::string > & | input_errors | ||
| ) | const |
| bool CWallet::TopUpKeyPool | ( | unsigned int | kpSize = 0 | ) |
Definition at line 2388 of file wallet.cpp.
| OutputType CWallet::TransactionChangeType | ( | const std::optional< OutputType > & | change_type, |
| const std::vector< CRecipient > & | vecSend | ||
| ) | const |
Definition at line 2180 of file wallet.cpp.
| void CWallet::UnlockAllCoins | ( | ) |
Definition at line 2526 of file wallet.cpp.
| void CWallet::UnlockCoin | ( | const COutPoint & | output | ) |
Definition at line 2521 of file wallet.cpp.
Definition at line 2267 of file wallet.cpp.