![]() |
Bitcoin Core 22.99.0
P2P Digital Currency
|
#include <wallet/wallet.h>
#include <chain.h>
#include <consensus/amount.h>
#include <consensus/consensus.h>
#include <consensus/validation.h>
#include <external_signer.h>
#include <fs.h>
#include <interfaces/chain.h>
#include <interfaces/wallet.h>
#include <key.h>
#include <key_io.h>
#include <outputtype.h>
#include <policy/fees.h>
#include <policy/policy.h>
#include <primitives/block.h>
#include <primitives/transaction.h>
#include <psbt.h>
#include <script/descriptor.h>
#include <script/script.h>
#include <script/signingprovider.h>
#include <txmempool.h>
#include <util/bip32.h>
#include <util/check.h>
#include <util/error.h>
#include <util/fees.h>
#include <util/moneystr.h>
#include <util/rbf.h>
#include <util/string.h>
#include <util/translation.h>
#include <wallet/coincontrol.h>
#include <wallet/context.h>
#include <wallet/fees.h>
#include <wallet/external_signer_scriptpubkeyman.h>
#include <univalue.h>
#include <algorithm>
#include <assert.h>
#include <optional>
#include <boost/algorithm/string/replace.hpp>
Go to the source code of this file.
Functions | |
bool | AddWalletSetting (interfaces::Chain &chain, const std::string &wallet_name) |
Add wallet name to persistent configuration so it will be loaded on startup. More... | |
bool | RemoveWalletSetting (interfaces::Chain &chain, const std::string &wallet_name) |
Remove wallet name from persistent configuration so it will not be loaded on startup. More... | |
static void | UpdateWalletSetting (interfaces::Chain &chain, const std::string &wallet_name, std::optional< bool > load_on_startup, std::vector< bilingual_str > &warnings) |
static void | RefreshMempoolStatus (CWalletTx &tx, interfaces::Chain &chain) |
Refresh mempool status so the wallet is in an internally consistent state and immediately knows the transaction's status: Whether it can be considered trusted and is eligible to be abandoned ... More... | |
bool | AddWallet (WalletContext &context, const std::shared_ptr< CWallet > &wallet) |
bool | RemoveWallet (WalletContext &context, const std::shared_ptr< CWallet > &wallet, std::optional< bool > load_on_start, std::vector< bilingual_str > &warnings) |
bool | RemoveWallet (WalletContext &context, const std::shared_ptr< CWallet > &wallet, std::optional< bool > load_on_start) |
std::vector< std::shared_ptr< CWallet > > | GetWallets (WalletContext &context) |
std::shared_ptr< CWallet > | GetWallet (WalletContext &context, const std::string &name) |
std::unique_ptr< interfaces::Handler > | HandleLoadWallet (WalletContext &context, LoadWalletFn load_wallet) |
static std::set< std::string > g_loading_wallet_set | GUARDED_BY (g_loading_wallet_mutex) |
static std::set< std::string > g_unloading_wallet_set | GUARDED_BY (g_wallet_release_mutex) |
static void | ReleaseWallet (CWallet *wallet) |
void | UnloadWallet (std::shared_ptr< CWallet > &&wallet) |
Explicitly unload and delete the wallet. More... | |
std::shared_ptr< CWallet > | LoadWallet (WalletContext &context, const std::string &name, std::optional< bool > load_on_start, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error, std::vector< bilingual_str > &warnings) |
std::shared_ptr< CWallet > | CreateWallet (WalletContext &context, const std::string &name, std::optional< bool > load_on_start, DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error, std::vector< bilingual_str > &warnings) |
bool | DummySignInput (const SigningProvider &provider, CTxIn &tx_in, const CTxOut &txout, bool use_max_sig) |
void | MaybeResendWalletTxs (WalletContext &context) |
Called periodically by the schedule thread. More... | |
std::unique_ptr< WalletDatabase > | MakeWalletDatabase (const std::string &name, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error_string) |
Variables | |
const std::map< uint64_t, std::string > | WALLET_FLAG_CAVEATS |
static Mutex | g_loading_wallet_mutex |
static Mutex | g_wallet_release_mutex |
static std::condition_variable | g_wallet_release_cv |
bool AddWallet | ( | WalletContext & | context, |
const std::shared_ptr< CWallet > & | wallet | ||
) |
Definition at line 105 of file wallet.cpp.
bool AddWalletSetting | ( | interfaces::Chain & | chain, |
const std::string & | wallet_name | ||
) |
Add wallet name to persistent configuration so it will be loaded on startup.
Definition at line 59 of file wallet.cpp.
std::shared_ptr< CWallet > CreateWallet | ( | WalletContext & | context, |
const std::string & | name, | ||
std::optional< bool > | load_on_start, | ||
DatabaseOptions & | options, | ||
DatabaseStatus & | status, | ||
bilingual_str & | error, | ||
std::vector< bilingual_str > & | warnings | ||
) |
Definition at line 258 of file wallet.cpp.
std::shared_ptr< CWallet > GetWallet | ( | WalletContext & | context, |
const std::string & | name | ||
) |
std::vector< std::shared_ptr< CWallet > > GetWallets | ( | WalletContext & | context | ) |
|
static |
|
static |
std::unique_ptr< interfaces::Handler > HandleLoadWallet | ( | WalletContext & | context, |
LoadWalletFn | load_wallet | ||
) |
Definition at line 158 of file wallet.cpp.
std::shared_ptr< CWallet > LoadWallet | ( | WalletContext & | context, |
const std::string & | name, | ||
std::optional< bool > | load_on_start, | ||
const DatabaseOptions & | options, | ||
DatabaseStatus & | status, | ||
bilingual_str & | error, | ||
std::vector< bilingual_str > & | warnings | ||
) |
Definition at line 245 of file wallet.cpp.
std::unique_ptr< WalletDatabase > MakeWalletDatabase | ( | const std::string & | name, |
const DatabaseOptions & | options, | ||
DatabaseStatus & | status, | ||
bilingual_str & | error_string | ||
) |
Definition at line 2510 of file wallet.cpp.
void MaybeResendWalletTxs | ( | WalletContext & | context | ) |
Called periodically by the schedule thread.
Prompts individual wallets to resend their transactions. Actual rebroadcast schedule is managed by the wallets themselves.
Definition at line 1809 of file wallet.cpp.
|
static |
Refresh mempool status so the wallet is in an internally consistent state and immediately knows the transaction's status: Whether it can be considered trusted and is eligible to be abandoned ...
Definition at line 100 of file wallet.cpp.
|
static |
bool RemoveWallet | ( | WalletContext & | context, |
const std::shared_ptr< CWallet > & | wallet, | ||
std::optional< bool > | load_on_start | ||
) |
bool RemoveWallet | ( | WalletContext & | context, |
const std::shared_ptr< CWallet > & | wallet, | ||
std::optional< bool > | load_on_start, | ||
std::vector< bilingual_str > & | warnings | ||
) |
Definition at line 117 of file wallet.cpp.
bool RemoveWalletSetting | ( | interfaces::Chain & | chain, |
const std::string & | wallet_name | ||
) |
Remove wallet name from persistent configuration so it will not be loaded on startup.
Definition at line 70 of file wallet.cpp.
void UnloadWallet | ( | std::shared_ptr< CWallet > && | wallet | ) |
Explicitly unload and delete the wallet.
Blocks the current thread after signaling the unload intent so that all wallet clients release the wallet. Note that, when blocking is not required, the wallet is implicitly unloaded by the shared pointer deleter.
Definition at line 189 of file wallet.cpp.
|
static |
Definition at line 82 of file wallet.cpp.
|
static |
Definition at line 165 of file wallet.cpp.
|
static |
Definition at line 167 of file wallet.cpp.
|
static |
Definition at line 166 of file wallet.cpp.
const std::map<uint64_t,std::string> WALLET_FLAG_CAVEATS |
Definition at line 51 of file wallet.cpp.