8#include <bitcoin-build-config.h>
10#include <blockfilter.h>
76#include <condition_variable>
115 if (!value.isStr() || value.get_str() != wallet_name)
new_value.push_back(value);
125 const std::string& wallet_name,
127 std::vector<bilingual_str>& warnings)
131 warnings.emplace_back(
Untranslated(
"Wallet load on startup setting could not be updated, so wallet may not be loaded next node startup."));
133 warnings.emplace_back(
Untranslated(
"Wallet load on startup setting could not be updated, so wallet may still be loaded next node startup."));
155 std::vector<std::shared_ptr<CWallet>>::const_iterator i = std::find(context.wallets.begin(), context.wallets.end(),
wallet);
156 if (i != context.wallets.end())
return false;
157 context.wallets.push_back(
wallet);
158 wallet->ConnectScriptPubKeyManNotifiers();
159 wallet->NotifyCanGetAddressesChanged();
172 wallet->DisconnectChainNotifications();
175 std::vector<std::shared_ptr<CWallet>>::iterator i = std::find(context.wallets.begin(), context.wallets.end(),
wallet);
176 if (i == context.wallets.end())
return false;
177 context.wallets.erase(i);
190 std::vector<bilingual_str> warnings;
197 return context.wallets;
203 count = context.wallets.size();
204 return count == 1 ? context.wallets[0] :
nullptr;
210 for (
const std::shared_ptr<CWallet>&
wallet : context.wallets) {
219 auto it = context.wallet_load_fns.emplace(context.wallet_load_fns.end(), std::move(
load_wallet));
226 for (
auto&
load_wallet : context.wallet_load_fns) {
241 wallet->WalletLogPrintf(
"Releasing wallet %s..\n",
name);
276std::shared_ptr<CWallet>
LoadWalletInternal(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)
285 context.chain->initMessage(
_(
"Loading wallet…"));
295 wallet->postInitProcess();
301 }
catch (
const std::runtime_error&
e) {
308class FastWalletRescanFilter
315 auto desc_spkm{
dynamic_cast<DescriptorScriptPubKeyMan*
>(
spkm)};
367 if (!result.second) {
403 error =
Untranslated(
"Private keys must be disabled when using an external signer");
410 error =
Untranslated(
"Passphrase provided but private keys are disabled. A passphrase is only used to encrypt private keys, so cannot be used for wallets with private keys disabled.");
435 error =
Untranslated(
"Error: Wallet created but failed to encrypt.");
442 error =
Untranslated(
"Error: Wallet was encrypted but could not be unlocked");
450 wallet->SetupDescriptorScriptPubKeyMans();
461 wallet->postInitProcess();
488 std::shared_ptr<CWallet>
wallet;
531 }
catch (
const std::exception&
e) {
559 const auto it = mapWallet.find(hash);
560 if (it == mapWallet.end())
562 return &(it->second);
583 auto start{SteadyClock::now()};
589 start = SteadyClock::now();
660 WalletLogPrintf(
"Wallet passphrase changed to an nDeriveIterations of %i\n", master_key.nDeriveIterations);
691 std::set<Txid> result;
694 const auto it = mapWallet.find(txid);
695 if (it == mapWallet.end())
699 std::pair<TxSpends::const_iterator, TxSpends::const_iterator>
range;
707 result.insert(
_it->second);
715 const Txid& txid = tx->GetHash();
716 for (
unsigned int i = 0; i < tx->vout.size(); ++i) {
737 for (TxSpends::iterator it =
range.first; it !=
range.second; ++it) {
738 const CWalletTx* wtx = &mapWallet.at(it->second);
750 for (TxSpends::iterator it =
range.first; it !=
range.second; ++it)
752 const Txid& hash = it->second;
755 assert(
copyFrom &&
"Oldest wallet transaction in range assumed to have been found.");
772 std::pair<TxSpends::const_iterator, TxSpends::const_iterator>
range;
775 for (TxSpends::const_iterator it =
range.first; it !=
range.second; ++it) {
776 const Txid& txid = it->second;
777 const auto mit = mapWallet.find(txid);
778 if (
mit != mapWallet.end()) {
779 const auto& wtx =
mit->second;
780 if (!wtx.isAbandoned() && !wtx.isBlockConflicted() && !wtx.isMempoolConflicted())
789 mapTxSpends.insert(std::make_pair(outpoint, txid));
793 std::pair<TxSpends::iterator, TxSpends::iterator>
range;
892 typedef std::multimap<int64_t, CWalletTx*>
TxItems;
895 for (
auto& entry : mapWallet)
956 for (
auto& [
_, wtx] : mapWallet)
1031 Txid hash = tx->GetHash();
1046 auto ret = mapWallet.emplace(std::piecewise_construct, std::forward_as_tuple(hash), std::forward_as_tuple(tx, state));
1063 if (state.index() != wtx.
m_state.index()) {
1075 if (tx->HasWitness() && !wtx.
tx->HasWitness()) {
1083 std::vector<CWalletTx*>
txs{&wtx};
1087 while (!
txs.empty()) {
1095 for (
unsigned int i = 0; i <
desc_tx->tx->vout.size(); ++i) {
1097 std::pair<TxSpends::const_iterator, TxSpends::const_iterator>
range =
mapTxSpends.equal_range(outpoint);
1098 for (TxSpends::const_iterator it =
range.first; it !=
range.second; ++it) {
1099 const auto wit = mapWallet.find(it->second);
1100 if (
wit != mapWallet.end()) {
1101 txs.push_back(&
wit->second);
1134 ReplaceAll(
strCmd,
"%b",
conf->confirmed_block_hash.GetHex());
1135 ReplaceAll(
strCmd,
"%h", ToString(
conf->confirmed_block_height));
1137 ReplaceAll(
strCmd,
"%b",
"unconfirmed");
1138 ReplaceAll(
strCmd,
"%h",
"-1");
1158 const auto&
ins = mapWallet.emplace(std::piecewise_construct, std::forward_as_tuple(hash), std::forward_as_tuple(
nullptr,
TxStateInactive{}));
1173 auto it = mapWallet.find(
txin.prevout.hash);
1174 if (it != mapWallet.end()) {
1196 if (
auto*
conf = std::get_if<TxStateConfirmed>(&state)) {
1198 std::pair<TxSpends::const_iterator, TxSpends::const_iterator>
range =
mapTxSpends.equal_range(
txin.prevout);
1201 WalletLogPrintf(
"Transaction %s (in block %s) conflicts with wallet transaction %s (both spend %s:%i)\n", tx.
GetHash().
ToString(),
conf->confirmed_block_hash.ToString(),
range.first->second.ToString(),
range.first->first.hash.ToString(),
range.first->first.n);
1222 for (
auto &dest :
spk_man->MarkUnusedAddresses(txout.scriptPubKey)) {
1224 if (!dest.internal.has_value()) {
1229 if (!dest.internal.has_value())
continue;
1248 throw std::runtime_error(
"DB error adding transaction to wallet, write failed");
1267 for (
long unsigned int i = 0; i <
parent_wtx.tx->vout.size(); i++) {
1283 auto it = mapWallet.find(
txin.prevout.hash);
1284 if (it != mapWallet.end()) {
1285 it->second.MarkDirty();
1293 auto it = mapWallet.find(
hashTx);
1294 assert(it != mapWallet.end());
1307 assert(!wtx.isConfirmed());
1308 assert(!wtx.InMempool());
1310 if (!wtx.isBlockConflicted() && !wtx.isAbandoned()) {
1364 std::set<Txid>
todo;
1365 std::set<Txid> done;
1369 while (!
todo.empty()) {
1373 auto it = mapWallet.find(now);
1374 assert(it != mapWallet.end());
1380 if (batch) batch->
WriteTx(wtx);
1382 for (
unsigned int i = 0; i < wtx.
tx->vout.size(); ++i) {
1384 for (TxSpends::const_iterator iter =
range.first; iter !=
range.second; ++iter) {
1385 if (!done.contains(iter->second)) {
1386 todo.insert(iter->second);
1418 auto it = mapWallet.find(tx->GetHash());
1419 if (it != mapWallet.end()) {
1423 const Txid& txid = tx->GetHash();
1459 auto it = mapWallet.find(tx->GetHash());
1460 if (it != mapWallet.end()) {
1493 const Txid& txid = tx->GetHash();
1517 if (
parent_wtx.truc_child_in_mempool == tx->GetHash()) {
1544 for (
size_t index = 0; index < block.
data->
vtx.size(); index++) {
1566 for (
size_t index = 0; index < block.
data->
vtx.size(); index++) {
1576 std::pair<TxSpends::const_iterator, TxSpends::const_iterator>
range =
mapTxSpends.equal_range(
tx_in.prevout);
1607void CWallet::BlockUntilSyncedToCurrentChain()
const {
1624 return txo->GetTxOut().nValue;
1649 for (
const auto&
spkm : it->second) {
1675 if (outpoint.
n >= wtx->tx->vout.size()) {
1678 return IsMine(wtx->tx->vout[outpoint.
n]);
1697 throw std::runtime_error(std::string(
__func__) +
": value out of range");
1705 bool result =
false;
1707 if (!
spk_man->IsHDEnabled())
return false;
1737 throw std::runtime_error(std::string(
__func__) +
": writing wallet flags failed");
1751 throw std::runtime_error(std::string(
__func__) +
": writing wallet flags failed");
1786 throw std::runtime_error(std::string(
__func__) +
": writing wallet flags failed");
1872 fast_rescan_filter ?
"fast variant using block filters" :
"slow variant inspecting all blocks");
1912 LogDebug(
BCLog::SCAN,
"Fast rescan: inspect block %d [%s] (WARNING: block filter not found!)\n", block_height, block_hash.
ToString());
1948 if (!
loc.IsNull()) {
1999 }
else if (block_height &&
chain().shutdownRequested()) {
2024 const char* what{
""};
2027 what =
"to mempool and for broadcast to peers";
2030 what =
"to mempool without broadcast";
2033 what =
"for private broadcast without adding to the mempool";
2069 if (!
chain().isReadyToBroadcast())
return false;
2118 std::set<CWalletTx*, WalletTxOrderComparator>
to_submit;
2119 for (
auto& [txid, wtx] : mapWallet) {
2121 if (!wtx.isUnconfirmed())
continue;
2144 for (
const std::shared_ptr<CWallet>& pwallet :
GetWallets(context)) {
2145 if (!pwallet->ShouldResend())
continue;
2147 pwallet->SetNextResend();
2157 std::map<COutPoint, Coin> coins;
2158 for (
auto& input : tx.
vin) {
2159 const auto mi = mapWallet.find(input.prevout.hash);
2160 if(
mi == mapWallet.end() || input.prevout.n >=
mi->second.tx->vout.size()) {
2193 for (
unsigned int i = 0; i <
psbtx.tx->vin.size(); ++i) {
2204 const auto it = mapWallet.find(
txhash);
2205 if (it != mapWallet.end()) {
2233 for (
size_t i = 0; i <
psbtx.inputs.size(); ++i) {
2270 for (
const auto& recipient :
vecSend) {
2271 if (std::get_if<WitnessV1Taproot>(&recipient.dest)) {
2273 }
else if (std::get_if<WitnessV0KeyHash>(&recipient.dest)) {
2275 }
else if (std::get_if<ScriptHash>(&recipient.dest)) {
2277 }
else if (std::get_if<PKHash>(&recipient.dest)) {
2324 wtx.
mapValue = std::move(mapValue);
2331 throw std::runtime_error(std::string(
__func__) +
": Wallet db error, transaction commit failed");
2380 warnings.push_back(
strprintf(
_(
"Error reading %s! All keys read correctly, but transaction data"
2381 " or address metadata may be missing or incorrect."),
2385 warnings.push_back(
strprintf(
_(
"Error reading %s! Transaction data may be missing or incorrect."
2395 error =
strprintf(
_(
"Error loading %s: External signer wallet being loaded without external signer support compiled"),
wallet_file);
2401 error =
strprintf(
_(
"Unrecognized descriptor found. Loading wallet %s\n\n"
2402 "The wallet might have been created on a newer version.\n"
2403 "Please try running the latest software version.\n"),
wallet_file);
2406 error =
strprintf(
_(
"Unexpected legacy entry in descriptor wallet found. Loading wallet %s\n\n"
2407 "The wallet might have been tampered with or created with malicious intent.\n"),
wallet_file);
2410 error =
strprintf(
_(
"Error loading %s: Wallet is a legacy wallet. Please migrate to a descriptor wallet using the migration tool (migratewallet RPC)."),
wallet_file);
2426 return result.has_value();
2439 std::vector<
decltype(mapWallet)::const_iterator>
erased_txs;
2442 auto it_wtx = mapWallet.find(hash);
2443 if (
it_wtx == mapWallet.end()) {
2456 const Txid hash{it->first};
2457 wtxOrdered.erase(it->second.m_it_wtxOrdered);
2458 for (
const auto&
txin : it->second.tx->vin) {
2460 for (
auto iter =
range.first; iter !=
range.second; ++iter) {
2461 if (iter->second == hash) {
2467 for (
unsigned int i = 0; i < it->second.tx->vout.size(); ++i) {
2470 mapWallet.erase(it);
2484 std::optional<AddressPurpose> purpose;
2487 std::map<CTxDestination, CAddressBookData>::iterator
mi =
m_address_book.find(address);
2492 is_mine =
IsMine(address);
2496 purpose =
record.purpose;
2501 WalletLogPrintf(
"Error: fail to write address book 'purpose' entry\n");
2572 unsigned int count = 0;
2584 unsigned int count = 0;
2629 for (
auto& entry : mapWallet) {
2632 for (
unsigned int i = 0; i < wtx.
tx->vout.size(); i++) {
2645 for (
const std::pair<const CTxDestination, CAddressBookData>&
item :
m_address_book) {
2646 const auto& entry =
item.second;
2647 func(
item.first, entry.GetLabel(), entry.IsChange(), entry.purpose);
2654 std::vector<CTxDestination> result;
2662 result.emplace_back(dest);
2674 if (!purpose || purpose ==
_purpose) {
2728 return util::Error{
_(
"There is no ScriptPubKeyManager for this address")};
2766 bool success =
true;
2814 std::optional<uint256> block_hash;
2816 block_hash =
conf->confirmed_block_hash;
2818 block_hash =
conf->conflicting_block_hash;
2865 if (std::get_if<CNoDestination>(&dest))
2895 std::vector<std::string>
values;
2897 for (
const auto& [
id, request] : entry.receive_requests) {
2898 values.emplace_back(request);
2928 if (!(
path_type == fs::file_type::not_found ||
path_type == fs::file_type::directory ||
2932 "Invalid -wallet path '%s'. -wallet path should point to a directory where wallet.dat and "
2933 "database/log.?????????? files can be stored, a location where such a directory could be created, "
2934 "or (for backwards compatibility) the name of an existing data file in -walletdir (%s)",
2956 if (!
args.
GetArg(
"-addresstype",
"").empty()) {
2965 if (!
args.
GetArg(
"-changetype",
"").empty()) {
2977 error = AmountErrMsg(
"mintxfee", *
arg);
2980 warnings.push_back(AmountHighWarn(
"-mintxfee") +
Untranslated(
" ") +
2981 _(
"This is the minimum transaction fee you pay on every transaction."));
2990 wallet->m_max_aps_fee = -1;
2993 warnings.push_back(AmountHighWarn(
"-maxapsfee") +
Untranslated(
" ") +
2994 _(
"This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection."));
3006 error =
strprintf(
_(
"Invalid amount for %s=<amount>: '%s'"),
"-fallbackfee", *
arg);
3009 warnings.push_back(AmountHighWarn(
"-fallbackfee") +
Untranslated(
" ") +
3010 _(
"This is the transaction fee you may pay when fee estimates are not available."));
3016 wallet->m_allow_fallback_fee =
wallet->m_fallback_fee.GetFeePerK() != 0;
3021 error =
strprintf(
_(
"Invalid amount for %s=<amount>: '%s'"),
"-discardfee", *
arg);
3024 warnings.push_back(AmountHighWarn(
"-discardfee") +
Untranslated(
" ") +
3025 _(
"This is the transaction fee you may discard if change is smaller than dust at this level"));
3033 error = AmountErrMsg(
"maxtxfee", *
arg);
3036 warnings.push_back(
strprintf(
_(
"%s is set very high! Fees this large could be paid on a single transaction."),
"-maxtxfee"));
3040 error =
strprintf(
_(
"Invalid amount for %s=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)"),
3052 error = AmountErrMsg(
"consolidatefeerate", *
arg);
3058 warnings.push_back(AmountHighWarn(
"-minrelaytxfee") +
Untranslated(
" ") +
3059 _(
"The wallet will avoid paying less than the minimum relay fee."));
3078 const auto start{SteadyClock::now()};
3132 const auto start{SteadyClock::now()};
3146 if (
walletInstance->IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
3148 if (
spk_man->HavePrivateKeys()) {
3149 warnings.push_back(
strprintf(
_(
"Warning: Private keys detected in wallet {%s} with disabled private keys"),
walletFile));
3186 error =
Untranslated(
"Wallet files should not be reused across chains. Restart bitcoind with -walletcrosschain to override.");
3240 int block_height = *tip_height;
3256 _(
"Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of a pruned node)") :
3258 "Error loading wallet. Wallet requires blocks to be downloaded, "
3259 "and software does not currently support loading wallets while "
3260 "blocks are being downloaded out of order when using assumeutxo "
3261 "snapshots. Wallet should be able to load successfully after "
3262 "node sync reaches height %s"), block_height);
3273 error =
_(
"Failed to acquire rescan reserver during wallet initialization");
3278 error =
_(
"Failed to rescan the wallet during initialization");
3394 std::set<ScriptPubKeyMan*>
spk_mans;
3395 for (
bool internal : {
false,
true}) {
3419 std::set<ScriptPubKeyMan*>
spk_mans;
3429 std::map<OutputType, ScriptPubKeyMan*>::const_iterator it =
spk_managers.find(type);
3438 std::set<ScriptPubKeyMan*>
spk_mans;
3443 spk_mans.insert(it->second.begin(), it->second.end());
3472 return it->second.at(0)->GetSolvingProvider(
script);
3480 std::vector<WalletDescriptor>
descs;
3523 std::unique_ptr<ScriptPubKeyMan>
spk_manager = std::make_unique<LegacyDataSPKM>(*
this);
3547 if (
spkm->HaveCryptedKeys())
return true;
3580 throw std::runtime_error(std::string(
__func__) +
": Wallet is locked, cannot setup new descriptors");
3583 throw std::runtime_error(std::string(
__func__) +
": Could not encrypt new descriptors");
3597 for (
bool internal : {
false,
true}) {
3628 }))
throw std::runtime_error(
"Error: cannot process db transaction for descriptors setup");
3637 if (!
signer_res.isObject())
throw std::runtime_error(std::string(
__func__) +
": Unexpected result");
3640 if (!batch.
TxnBegin())
throw std::runtime_error(
"Error: cannot create db transaction for descriptors import");
3642 for (
bool internal : {
false,
true}) {
3650 if (
descs.empty()) {
3653 auto& desc =
descs.at(0);
3654 if (!desc->GetOutputType()) {
3659 spk_manager->SetupDescriptor(batch, std::move(desc));
3667 if (!batch.
TxnCommit())
throw std::runtime_error(
"Error: cannot commit db transaction for descriptors import");
3680 throw std::runtime_error(std::string(
__func__) +
": writing active ScriptPubKeyMan id failed");
3711 if (!batch.EraseActiveScriptPubKeyMan(
static_cast<uint8_t>(type), internal)) {
3712 throw std::runtime_error(std::string(
__func__) +
": erasing active ScriptPubKeyMan id failed");
3741 return std::nullopt;
3746 throw std::runtime_error(std::string(
__func__) +
": unexpected ScriptPubKeyMan type.");
3750 const auto& type =
desc_spk_man->GetWalletDescriptor().descriptor->GetOutputType();
3751 assert(type.has_value());
3779 const CKey& key = entry.second;
3785 return util::Error{
_(
"Could not top up scriptPubKeys")};
3793 return util::Error{
_(
"Could not generate scriptPubKeys (cache is empty)")};
3812 return std::reference_wrapper(*
spk_man);
3819 WalletLogPrintf(
"Migrating wallet storage database from BerkeleyDB to SQLite.\n");
3822 error =
_(
"Error: This wallet already uses SQLite");
3827 std::unique_ptr<DatabaseBatch> batch =
m_database->MakeBatch();
3828 std::unique_ptr<DatabaseCursor>
cursor = batch->GetNewCursor();
3829 std::vector<std::pair<SerializeData, SerializeData>> records;
3831 error =
_(
"Error: Unable to begin reading all records in the database");
3844 records.emplace_back(key, value);
3849 error =
_(
"Error: Unable to read all records in the database");
3874 bool began = batch->TxnBegin();
3876 for (
const auto& [key, value] : records) {
3877 if (!batch->Write(std::span{key}, std::span{value})) {
3897 return std::nullopt;
3900 std::optional<MigrationData>
res =
legacy_spkm->MigrateToDescriptor();
3901 if (
res == std::nullopt) {
3902 error =
_(
"Error: Unable to produce descriptors for this legacy wallet. Make sure to provide the wallet's passphrase if it is encrypted.");
3903 return std::nullopt;
3931 if (!data.watch_descs.empty())
Assume(!data.watchonly_wallet->m_cached_spks.empty());
3932 if (!data.solvable_descs.empty())
Assume(!data.solvable_wallet->m_cached_spks.empty());
3934 for (
auto&
desc_spkm : data.desc_spkms) {
3936 return util::Error{
_(
"Error: Duplicate descriptors created during migration. Your wallet may be corrupted.")};
3944 return util::Error{
_(
"Error: cannot remove legacy wallet records")};
3956 if (data.master_key.key.IsValid()) {
3967 return util::Error{
_(
"Error: Unable to read wallet's best block locator record")};
3978 if (data.watchonly_wallet) {
3979 watchonly_batch = std::make_unique<WalletBatch>(data.watchonly_wallet->GetDatabase());
3982 LOCK(data.watchonly_wallet->cs_wallet);
3984 watchonly_batch->WriteOrderPosNext(data.watchonly_wallet->nOrderPosNext);
3987 return util::Error{
_(
"Error: Unable to write watchonly wallet best block locator record")};
3991 if (data.solvable_wallet) {
3992 solvables_batch = std::make_unique<WalletBatch>(data.solvable_wallet->GetDatabase());
3996 return util::Error{
_(
"Error: Unable to write solvable wallet best block locator record")};
4003 if (data.watchonly_wallet) {
4004 LOCK(data.watchonly_wallet->cs_wallet);
4005 if (data.watchonly_wallet->IsMine(*wtx->tx) || data.watchonly_wallet->IsFromMe(*wtx->tx)) {
4007 const Txid& hash = wtx->GetHash();
4010 if (!new_tx) return false;
4011 ins_wtx.SetTx(to_copy_wtx.tx);
4012 ins_wtx.CopyFrom(to_copy_wtx);
4015 return util::Error{
strprintf(
_(
"Error: Could not add watchonly tx %s to watchonly wallet"), wtx->GetHash().GetHex())};
4027 return util::Error{
strprintf(
_(
"Error: Transaction %s in wallet cannot be identified to belong to migrated wallets"), wtx->GetHash().GetHex())};
4039 std::vector<std::pair<std::shared_ptr<CWallet>, std::unique_ptr<WalletBatch>>>
wallets_vec;
4047 if (entry.label) batch.
WriteName(address, *entry.label);
4048 for (
const auto& [
id, request] : entry.receive_requests) {
4088 return util::Error{
_(
"Error: Address book data in wallet cannot be identified to belong to migrated wallets")};
4103 return util::Error{
_(
"Error: Unable to remove watchonly address book data")};
4113 if (!mapWallet.empty())
return util::Error{
_(
"Error: Not all transaction records were migrated")};
4130 return name.empty() ?
"default_wallet" :
name;
4138 std::optional<MigrationData> data =
wallet.GetDescriptorsForLegacy(error);
4139 if (data == std::nullopt)
return false;
4142 if (data->watch_descs.size() > 0 || data->solvable_descs.size() > 0) {
4159 if (data->watch_descs.size() > 0) {
4160 wallet.WalletLogPrintf(
"Making a new watchonly wallet containing the watched scripts\n");
4163 std::vector<bilingual_str> warnings;
4167 error =
strprintf(
_(
"Wallet file creation failed: %s"), error);
4172 if (!data->watchonly_wallet) {
4173 error =
_(
"Error: Failed to create new watchonly wallet");
4176 res.watchonly_wallet = data->watchonly_wallet;
4177 LOCK(data->watchonly_wallet->cs_wallet);
4180 for (
const auto& [
desc_str, creation_time] : data->watch_descs) {
4198 if (data->solvable_descs.size() > 0) {
4199 wallet.WalletLogPrintf(
"Making a new watchonly wallet containing the unwatched solvable scripts\n");
4202 std::vector<bilingual_str> warnings;
4206 error =
strprintf(
_(
"Wallet file creation failed: %s"), error);
4211 if (!data->solvable_wallet) {
4212 error =
_(
"Error: Failed to create new watchonly wallet");
4215 res.solvables_wallet = data->solvable_wallet;
4216 LOCK(data->solvable_wallet->cs_wallet);
4219 for (
const auto& [
desc_str, creation_time] : data->solvable_descs) {
4241 if (auto res_migration = wallet.ApplyMigrationData(batch, *data); !res_migration) {
4242 error = util::ErrorString(res_migration);
4245 wallet.WalletLogPrintf(
"Wallet migration complete.\n");
4252 std::vector<bilingual_str> warnings;
4257 assert(
wallet->IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
4258 return util::Error{
_(
"Error: This wallet is already a descriptor wallet")};
4269 return util::Error{
_(
"Error: This wallet is already a descriptor wallet")};
4299 std::vector<bilingual_str> warnings;
4305 const std::string wallet_name =
local_wallet->GetName();
4308 if (
local_wallet->IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS)) {
4309 return util::Error{
_(
"Error: This wallet is already a descriptor wallet")};
4327 return util::Error{
_(
"Error: Unable to make a backup of your wallet")};
4329 res.backup_path = backup_path;
4331 bool success =
false;
4335 if (
passphrase.find(
'\0') == std::string::npos) {
4336 return util::Error{
Untranslated(
"Error: Wallet decryption failed, the wallet passphrase was not provided or was incorrect.")};
4338 return util::Error{
Untranslated(
"Error: Wallet decryption failed, the wallet passphrase entered was incorrect. "
4339 "The passphrase contains a null character (ie - a zero byte). "
4340 "If this passphrase was set with a version of this software prior to 25.0, "
4341 "please try again with only the characters up to — but not including — "
4342 "the first null character.")};
4383 if (
wallet.GetName() != wallet_name) {
4403 LogInfo(
"Loading new wallets after migration...\n");
4411 std::string wallet_name =
wallet->GetName();
4413 wallet =
LoadWallet(context, wallet_name, std::nullopt, options, status, error, warnings);
4415 LogError(
"Failed to load wallet '%s' after migration. Rolling back migration to preserve consistency. "
4416 "Error cause: %s\n", wallet_name, error.
original);
4444 if (
w->HaveChain()) {
4446 if (!RemoveWallet(context,
w,
false)) {
4447 error +=
_(
"\nUnable to cleanup failed migration");
4474 error +=
restore_error +
_(
"\nUnable to restore backup of wallet.");
4498std::set<CExtPubKey> CWallet::GetActiveHDPubKeys()
const
4502 Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
4505 for (
const auto&
spkm : GetActiveScriptPubKeyMans()) {
4521 Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
4523 for (
const auto&
spkm : GetAllScriptPubKeyMans()) {
4531 return std::nullopt;
4534void CWallet::WriteBestBlock()
const
4542 if (!
loc.IsNull()) {
4552 for (
uint32_t i = 0; i < wtx.
tx->vout.size(); ++i) {
4553 const CTxOut& txout = wtx.
tx->vout.at(i);
4554 if (!IsMine(txout))
continue;
4556 if (
m_txos.contains(outpoint)) {
4563void CWallet::RefreshAllTXOs()
4566 for (
const auto& [
_, wtx] : mapWallet) {
4567 RefreshTXOsFromTx(wtx);
4571std::optional<WalletTXO> CWallet::GetTXO(
const COutPoint& outpoint)
const
4574 const auto& it =
m_txos.find(outpoint);
4575 if (it ==
m_txos.end()) {
4576 return std::nullopt;
4581void CWallet::DisconnectChainNotifications()
4583 if (m_chain_notifications_handler) {
4584 m_chain_notifications_handler->disconnect();
4585 chain().waitForNotifications();
4586 m_chain_notifications_handler.reset();
bool ExtractDestination(const CScript &scriptPubKey, CTxDestination &addressRet)
Parse a scriptPubKey for the destination.
CScript GetScriptForDestination(const CTxDestination &dest)
Generate a Bitcoin scriptPubKey for the given CTxDestination.
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, PayToAnchor, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
bool MoneyRange(const CAmount &nValue)
int64_t CAmount
Amount in satoshis (Can be negative)
static constexpr int64_t TIMESTAMP_WINDOW
Timestamp window used as a grace period by code that compares external timestamps (such as timestamps...
#define CHECK_NONFATAL(condition)
Identity function.
#define Assert(val)
Identity function.
#define STR_INTERNAL_BUG(msg)
#define Assume(val)
Assume is the identity function.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const
std::string GetArg(const std::string &strArg, const std::string &strDefault) const
Return string argument or default value.
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
std::vector< CTransactionRef > vtx
Fee rate in satoshis per virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac.
std::string ToString(FeeRateFormat fee_rate_format=FeeRateFormat::BTC_KVB) const
CAmount GetFeePerK() const
Return the fee in satoshis for a vsize of 1000 vbytes.
An encapsulated private key.
CPubKey GetPubKey() const
Compute the public key from a private key.
A reference to a CKey: the Hash160 of its serialized public key.
An outpoint - a combination of a transaction hash and an index n into its vout.
An encapsulated public key.
Serialized script, used inside transaction inputs and outputs.
The basic transaction that is broadcasted on the network and contained in blocks.
const std::vector< CTxOut > vout
const Txid & GetHash() const LIFETIMEBOUND
const std::vector< CTxIn > vin
An input of a transaction.
An output of a transaction.
Double ended buffer combining vector and stream-like interfaces.
std::unordered_set< Element, ByteVectorHash > ElementSet
Different type to mark Mutex at global scope.
Tp rand_uniform_delay(const Tp &time, typename Tp::duration range) noexcept
Return the time point advanced by a uniform random duration.
const UniValue & find_value(std::string_view key) const
const std::string & getValStr() const
std::string ToString() const
Interface giving clients (wallet processes, maybe other analysis tools in the future) ability to acce...
virtual std::optional< int > getHeight()=0
Get current chain height, not including genesis block (returns 0 if chain only contains genesis block...
virtual uint256 getBlockHash(int height)=0
Get block hash. Height must be valid or this function will abort.
virtual bool findFirstBlockWithTimeAndHeight(int64_t min_time, int min_height, const FoundBlock &block={})=0
Find first block in the chain with timestamp >= the given time and height >= than the given height,...
virtual bool havePruned()=0
Check if any block has been pruned.
virtual bool updateRwSetting(const std::string &name, const SettingsUpdate &update_function)=0
Updates a setting in <datadir>/settings.json.
virtual bool hasAssumedValidChain()=0
Return true if an assumed-valid snapshot is in use.
virtual bool isInMempool(const Txid &txid)=0
Check if transaction is in mempool.
virtual bool findAncestorByHeight(const uint256 &block_hash, int ancestor_height, const FoundBlock &ancestor_out={})=0
Find ancestor of block at specified height and optionally return ancestor information.
virtual bool findBlock(const uint256 &hash, const FoundBlock &block={})=0
Return whether node has the block and optionally return block metadata or contents.
virtual double guessVerificationProgress(const uint256 &block_hash)=0
Estimate fraction of total transactions verified if blocks up to the specified block hash are verifie...
virtual void waitForNotificationsIfTipChanged(const uint256 &old_tip)=0
Wait for pending notifications to be processed unless block hash points to the current chain tip.
virtual void initMessage(const std::string &message)=0
Send init message.
virtual std::optional< int > findLocatorFork(const CBlockLocator &locator)=0
Return height of the highest block on chain in common with the locator, which will either be the orig...
virtual bool haveBlockOnDisk(int height)=0
Check that the block is available on disk (i.e.
virtual bool broadcastTransaction(const CTransactionRef &tx, const CAmount &max_tx_fee, node::TxBroadcast broadcast_method, std::string &err_string)=0
Process a local transaction, optionally adding it to the mempool and optionally broadcasting it to th...
virtual CFeeRate relayMinFee()=0
Relay current minimum fee (from -minrelaytxfee and -incrementalrelayfee settings).
Helper for findBlock to selectively return pieces of block data.
FoundBlock & locator(CBlockLocator &locator)
Return locator if block is in the active chain.
FoundBlock & height(int &height)
FoundBlock & data(CBlock &data)
Read block data from disk.
std::string ToString() const
constexpr const std::byte * begin() const
std::string GetHex() const
Encryption/decryption context with key information.
bool SetKeyFromPassphrase(const SecureString &key_data, std::span< const unsigned char > salt, unsigned int rounds, unsigned int derivation_method)
Private key encryption is done based on a CMasterKey, which holds a salt and random encryption key.
std::vector< unsigned char > vchSalt
unsigned int nDerivationMethod
0 = EVP_sha512()
std::vector< unsigned char > vchCryptedKey
unsigned int nDeriveIterations
static constexpr unsigned int DEFAULT_DERIVE_ITERATIONS
Default/minimum number of key derivation rounds.
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
void MarkDestinationsDirty(const std::set< CTxDestination > &destinations) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Marks all outputs in each one of the destinations dirty, so their cache is reset and does not return ...
bool SetAddressBook(const CTxDestination &address, const std::string &strName, const std::optional< AddressPurpose > &purpose)
std::atomic< bool > fAbortRescan
boost::signals2::signal< void(CWallet *wallet) NotifyStatusChanged)
Wallet status (encrypted, locked) changed.
bool TopUpKeyPool(unsigned int kpSize=0)
bool HaveChain() const
Interface to assert chain access.
bool GetBroadcastTransactions() const
Inquire whether this wallet broadcasts transactions.
DBErrors PopulateWalletFromDB(bilingual_str &error, std::vector< bilingual_str > &warnings)
unsigned int GetKeyPoolSize() const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
std::function< bool(CWalletTx &wtx, bool new_tx)> UpdateWalletTxFn
Callback for updating transaction metadata in mapWallet.
CAmount m_default_max_tx_fee
Absolute maximum transaction fee (in satoshis) used by default for the wallet.
std::optional< WalletTXO > GetTXO(const COutPoint &outpoint) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
bool IsActiveScriptPubKeyMan(const ScriptPubKeyMan &spkm) const
static bool AttachChain(const std::shared_ptr< CWallet > &wallet, interfaces::Chain &chain, bool rescan_required, bilingual_str &error, std::vector< bilingual_str > &warnings)
Catch wallet up to current chain, scanning new blocks, updating the best block locator and m_last_blo...
OutputType m_default_address_type
static std::shared_ptr< CWallet > LoadExisting(WalletContext &context, const std::string &name, std::unique_ptr< WalletDatabase > database, bilingual_str &error, std::vector< bilingual_str > &warnings)
void AddActiveScriptPubKeyMan(uint256 id, OutputType type, bool internal)
Adds the active ScriptPubKeyMan for the specified type and internal.
void LoadActiveScriptPubKeyMan(uint256 id, OutputType type, bool internal)
Loads an active ScriptPubKeyMan for the specified type and internal.
std::unique_ptr< WalletDatabase > m_database
Internal database handle.
bool IsLockedCoin(const COutPoint &output) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
bool SignTransaction(CMutableTransaction &tx) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Fetch the inputs and sign with SIGHASH_ALL.
CWallet(interfaces::Chain *chain, const std::string &name, std::unique_ptr< WalletDatabase > database)
Construct wallet with specified name and database implementation.
std::function< void(const CTxDestination &dest, const std::string &label, bool is_change, const std::optional< AddressPurpose > purpose)> ListAddrBookFunc
Walk-through the address book entries.
std::unique_ptr< SigningProvider > GetSolvingProvider(const CScript &script) const
Get the SigningProvider for a script.
bool IsTxImmatureCoinBase(const CWalletTx &wtx) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void RefreshAllTXOs() EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Cache outputs that belong to the wallet for all transactions in the wallet.
void AddActiveScriptPubKeyManWithDb(WalletBatch &batch, uint256 id, OutputType type, bool internal)
std::set< ScriptPubKeyMan * > GetActiveScriptPubKeyMans() const
Returns all unique ScriptPubKeyMans in m_internal_spk_managers and m_external_spk_managers.
const CAddressBookData * FindAddressBookEntry(const CTxDestination &, bool allow_change=false) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void postInitProcess()
Wallet post-init setup Gives the wallet a chance to register repetitive tasks and complete post-init ...
int GetTxDepthInMainChain(const CWalletTx &wtx) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Return depth of transaction in blockchain: <0 : conflicts with a transaction this deep in the blockch...
std::optional< common::PSBTError > FillPSBT(PartiallySignedTransaction &psbtx, bool &complete, std::optional< int > sighash_type=std::nullopt, bool sign=true, bool bip32derivs=true, size_t *n_signed=nullptr, bool finalize=true) const
Fills out a PSBT with information from the wallet.
unsigned int nMasterKeyMaxID
bool SetAddressReceiveRequest(WalletBatch &batch, const CTxDestination &dest, const std::string &id, const std::string &value) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
int GetLastBlockHeight() const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Get last block processed height.
std::atomic< double > m_scanning_progress
LegacyDataSPKM * GetLegacyDataSPKM() const
Get the LegacyScriptPubKeyMan which is used for all types, internal, and external.
std::vector< CTxDestination > ListAddrBookAddresses(const std::optional< AddrBookFilter > &filter) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Filter and retrieve destinations stored in the addressbook.
DescriptorScriptPubKeyMan * GetDescriptorScriptPubKeyMan(const WalletDescriptor &desc) const
Return the DescriptorScriptPubKeyMan for a WalletDescriptor if it is already in the wallet.
std::map< OutputType, ScriptPubKeyMan * > m_external_spk_managers
DescriptorScriptPubKeyMan & LoadDescriptorScriptPubKeyMan(uint256 id, WalletDescriptor &desc)
Instantiate a descriptor ScriptPubKeyMan from the WalletDescriptor and load it.
std::optional< MigrationData > GetDescriptorsForLegacy(bilingual_str &error) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Get all of the descriptors from a legacy wallet.
bool HaveCryptedKeys() const
LegacyDataSPKM * GetOrCreateLegacyDataSPKM()
interfaces::Chain & chain() const
Interface for accessing chain state.
const std::string & GetName() const
Get a name for this wallet for logging/debugging purposes.
bool Unlock(const CKeyingMaterial &vMasterKeyIn)
bool MigrateToSQLite(bilingual_str &error) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Move all records from the BDB database to a new SQLite database for storage.
bool BackupWallet(const std::string &strDest) const
boost::signals2::signal< void(const std::string &title, int nProgress) ShowProgress)
Show progress e.g.
std::map< OutputType, ScriptPubKeyMan * > m_internal_spk_managers
std::string m_name
Wallet name: relative directory name or "" for default wallet.
bool SetAddressPreviouslySpent(WalletBatch &batch, const CTxDestination &dest, bool used) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
util::Result< void > RemoveTxs(std::vector< Txid > &txs_to_remove) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Erases the provided transactions from the wallet.
RecursiveMutex m_relock_mutex
std::string m_notify_tx_changed_script
Notify external script when a wallet transaction comes in or is updated (handled by -walletnotify)
std::vector< std::string > GetAddressReceiveRequests() const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
std::vector< WalletDescriptor > GetWalletDescriptors(const CScript &script) const
Get the wallet descriptors for a script.
bool fBroadcastTransactions
Whether this wallet will submit newly created transactions to the node's mempool and prompt rebroadca...
size_t KeypoolCountExternalKeys() const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
int GetTxBlocksToMaturity(const CWalletTx &wtx) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void WalletLogPrintf(util::ConstevalFormatString< sizeof...(Params)> wallet_fmt, const Params &... params) const
Prepends the wallet name in logging output to ease debugging in multi-wallet use cases.
bool HasEncryptionKeys() const override
bool CanGrindR() const
Whether the (external) signer performs R-value signature grinding.
util::Result< CTxDestination > GetNewChangeDestination(OutputType type)
std::optional< bool > IsInternalScriptPubKeyMan(ScriptPubKeyMan *spk_man) const
Returns whether the provided ScriptPubKeyMan is internal.
void LoadLockedCoin(const COutPoint &coin, bool persistent) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
SigningResult SignMessage(const std::string &message, const PKHash &pkhash, std::string &str_sig) const
MasterKeyMap mapMasterKeys
util::Result< void > ApplyMigrationData(WalletBatch &local_wallet_batch, MigrationData &data) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Adds the ScriptPubKeyMans given in MigrationData to this wallet, removes LegacyScriptPubKeyMan,...
NodeClock::time_point m_next_resend
The next scheduled rebroadcast of wallet transactions.
WalletDatabase & GetDatabase() const override
bool EraseAddressReceiveRequest(WalletBatch &batch, const CTxDestination &dest, const std::string &id) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
boost::signals2::signal< void(const Txid &hashTx, ChangeType status) NotifyTransactionChanged)
Wallet transaction added, removed or updated.
bool SetAddressBookWithDB(WalletBatch &batch, const CTxDestination &address, const std::string &strName, const std::optional< AddressPurpose > &strPurpose)
boost::signals2::signal< void(const CTxDestination &address, const std::string &label, bool isMine, AddressPurpose purpose, ChangeType status) NotifyAddressBookChanged)
Address book entry changed.
void WriteBestBlock() const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Write the current best block to database.
bool DelAddressBookWithDB(WalletBatch &batch, const CTxDestination &address)
std::string DisplayName() const
Return wallet name for display, like LogName() but translates "default wallet" string.
void LoadAddressReceiveRequest(const CTxDestination &dest, const std::string &id, const std::string &request) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Appends payment request to destination.
void AddScriptPubKeyMan(const uint256 &id, std::unique_ptr< ScriptPubKeyMan > spkm_man)
void DeactivateScriptPubKeyMan(uint256 id, OutputType type, bool internal)
Remove specified ScriptPubKeyMan from set of active SPK managers.
std::atomic< uint64_t > m_wallet_flags
WalletFlags set on this wallet.
bool LockCoin(const COutPoint &output, bool persist) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
bool IsLocked() const override
OutputType TransactionChangeType(const std::optional< OutputType > &change_type, const std::vector< CRecipient > &vecSend) const
boost::signals2::signal< void()> NotifyCanGetAddressesChanged
Keypool has new keys.
std::set< ScriptPubKeyMan * > GetAllScriptPubKeyMans() const
Returns all unique ScriptPubKeyMans.
void RefreshTXOsFromTx(const CWalletTx &wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Cache outputs that belong to the wallet from a single transaction.
unsigned int ComputeTimeSmart(const CWalletTx &wtx, bool rescanning_old_block) const
Compute smart timestamp for a transaction being added to the wallet.
std::set< std::string > ListAddrBookLabels(std::optional< AddressPurpose > purpose) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Retrieve all the known labels in the address book.
void ListLockedCoins(std::vector< COutPoint > &vOutpts) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void CommitTransaction(CTransactionRef tx, mapValue_t mapValue, std::vector< std::pair< std::string, std::string > > orderForm)
Submit the transaction to the node's mempool and then relay to peers.
bool UnlockAllCoins() EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
util::Result< CTxDestination > GetNewDestination(OutputType type, const std::string &label)
ScriptPubKeyMan * GetScriptPubKeyMan(const OutputType &type, bool internal) const
Get the ScriptPubKeyMan for the given OutputType and internal/external chain.
bool IsAddressPreviouslySpent(const CTxDestination &dest) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
bool WithEncryptionKey(std::function< bool(const CKeyingMaterial &)> cb) const override
Pass the encryption key to cb().
uint256 GetLastBlockHash() const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
int64_t m_keypool_size
Number of pre-generated keys/scripts by each spkm (part of the look-ahead process,...
RecursiveMutex cs_wallet
Main wallet lock.
void ForEachAddrBookEntry(const ListAddrBookFunc &func) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void ConnectScriptPubKeyManNotifiers()
Connect the signals from ScriptPubKeyMans to the signals in CWallet.
static std::shared_ptr< CWallet > CreateNew(WalletContext &context, const std::string &name, std::unique_ptr< WalletDatabase > database, uint64_t wallet_creation_flags, bilingual_str &error, std::vector< bilingual_str > &warnings)
bool DelAddressBook(const CTxDestination &address)
std::atomic< int64_t > m_best_block_time
std::unordered_map< CScript, std::vector< ScriptPubKeyMan * >, SaltedSipHasher > m_cached_spks
Cache of descriptor ScriptPubKeys used for IsMine. Maps ScriptPubKey to set of spkms.
void SetupLegacyScriptPubKeyMan()
Make a Legacy(Data)SPKM and set it for all types, internal, and external.
std::multimap< int64_t, CWalletTx * > TxItems
void SetupOwnDescriptorScriptPubKeyMans(WalletBatch &batch) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Create new seed and default DescriptorScriptPubKeyMans for this wallet.
void SetupDescriptorScriptPubKeyMans() EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
DescriptorScriptPubKeyMan & SetupDescriptorScriptPubKeyMan(WalletBatch &batch, const CExtKey &master_key, const OutputType &output_type, bool internal) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Create new DescriptorScriptPubKeyMan and add it to the wallet.
std::map< uint256, std::unique_ptr< ScriptPubKeyMan > > m_spk_managers
std::function< TxUpdate(CWalletTx &wtx)> TryUpdatingStateFn
bool UnlockCoin(const COutPoint &output) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
std::atomic< int64_t > m_birth_time
void LoadAddressPreviouslySpent(const CTxDestination &dest) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Marks destination as previously spent.
util::Result< std::reference_wrapper< DescriptorScriptPubKeyMan > > AddWalletDescriptor(WalletDescriptor &desc, const FlatSigningProvider &signing_provider, const std::string &label, bool internal) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Add a descriptor to the wallet, return a ScriptPubKeyMan & associated output type.
static bool LoadWalletArgs(std::shared_ptr< CWallet > wallet, const WalletContext &context, bilingual_str &error, std::vector< bilingual_str > &warnings)
std::set< ScriptPubKeyMan * > GetScriptPubKeyMans(const CScript &script) const
Get all the ScriptPubKeyMans for a script.
util::Result< void > DisplayAddress(const CTxDestination &dest) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Display address on an external signer.
A transaction with a bunch of additional info that only the owner cares about.
bool isBlockConflicted() const
const Txid & GetHash() const LIFETIMEBOUND
std::vector< std::pair< std::string, std::string > > vOrderForm
std::set< Txid > mempool_conflicts
mapValue_t mapValue
Key/value map with information about the transaction.
void updateState(interfaces::Chain &chain)
Update transaction state when attaching to a chain, filling in heights of conflicted and confirmed bl...
int64_t nOrderPos
position in ordered transaction list
unsigned int nTimeReceived
time received by this node
void SetTx(CTransactionRef arg)
std::optional< Txid > truc_child_in_mempool
int64_t GetTxTime() const
bool m_is_cache_empty
This flag is true if all m_amounts caches are empty.
std::multimap< int64_t, CWalletTx * >::const_iterator m_it_wtxOrdered
unsigned int nTimeSmart
Stable timestamp that never changes, and reflects the order a transaction was added to the wallet.
void MarkDirty()
make sure balances are recalculated
void UpgradeDescriptorCache()
static util::Result< ExternalSigner > GetExternalSigner()
A wrapper to reserve an address from a wallet.
const CWallet *const pwallet
The wallet to reserve from.
void KeepDestination()
Keep the address. Do not return its key to the keypool when this object goes out of scope.
CTxDestination address
The destination.
bool fInternal
Whether this is from the internal (change output) keypool.
void ReturnDestination()
Return reserved address.
ScriptPubKeyMan * m_spk_man
The ScriptPubKeyMan to reserve from. Based on type when GetReservedDestination is called.
int64_t nIndex
The index of the address's key in the keypool.
util::Result< CTxDestination > GetReservedDestination(bool internal)
Reserve an address.
virtual void KeepDestination(int64_t index, const OutputType &type)
virtual void ReturnDestination(int64_t index, bool internal, const CTxDestination &addr)
virtual util::Result< CTxDestination > GetReservedDestination(const OutputType type, bool internal, int64_t &index)
Access to the wallet database.
bool EraseName(const std::string &strAddress)
DBErrors LoadWallet(CWallet *pwallet)
bool WriteBestBlock(const CBlockLocator &locator)
void RegisterTxnListener(const DbTxnListener &l)
Registers db txn callback functions.
bool ReadBestBlock(CBlockLocator &locator)
bool WriteMasterKey(unsigned int nID, const CMasterKey &kMasterKey)
bool WriteWalletFlags(uint64_t flags)
bool TxnBegin()
Begin a new transaction.
bool WriteAddressPreviouslySpent(const CTxDestination &dest, bool previously_spent)
bool EraseAddressReceiveRequest(const CTxDestination &dest, const std::string &id)
bool TxnCommit()
Commit current transaction.
bool WriteName(const std::string &strAddress, const std::string &strName)
bool WritePurpose(const std::string &strAddress, const std::string &purpose)
bool EraseAddressData(const CTxDestination &dest)
bool WriteOrderPosNext(int64_t nOrderPosNext)
bool WriteTx(const CWalletTx &wtx)
bool ErasePurpose(const std::string &strAddress)
bool EraseLockedUTXO(const COutPoint &output)
bool WriteLockedUTXO(const COutPoint &output)
bool WriteActiveScriptPubKeyMan(uint8_t type, const uint256 &id, bool internal)
bool WriteVersion(int client_version)
Write the given client_version.
bool WriteAddressReceiveRequest(const CTxDestination &dest, const std::string &id, const std::string &receive_request)
virtual void Close()=0
Flush to the database file and close the database.
virtual bool Backup(const std::string &strDest) const =0
Back up the entire database to a file.
virtual bool Rewrite()=0
Rewrite the entire database on disk.
Descriptor with some wallet metadata.
std::shared_ptr< Descriptor > descriptor
RAII object to check and reserve a wallet rescan.
void memory_cleanse(void *ptr, size_t len)
Secure overwrite a buffer (possibly containing secret data) with zero-bytes.
static UniValue Parse(std::string_view raw, ParamFormat format=ParamFormat::JSON)
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
static const int CLIENT_VERSION
std::string ShellEscape(const std::string &arg)
static const int COINBASE_MATURITY
Coinbase transaction outputs can only be spent after this number of new blocks (network rule)
static path u8path(std::string_view utf8_str)
static auto quoted(const std::string &s)
static bool exists(const path &p)
static bool copy_file(const path &from, const path &to, copy_options options)
static std::string PathToString(const path &path)
Convert path object to a byte string.
static path PathFromString(const std::string &string)
Convert byte string to path object.
bool TryCreateDirectories(const fs::path &p)
Ignores exceptions thrown by create_directories if the requested directory exists.
bool IsSpentKey(const CScript &scriptPubKey) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
int64_t IncOrderPosNext(WalletBatch *batch=nullptr) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Increment the next transaction order id.
void RecursiveUpdateTxState(const Txid &tx_hash, const TryUpdatingStateFn &try_updating_state) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Mark a transaction (and its in-wallet descendants) as a particular tx state.
void MarkInputsDirty(const CTransactionRef &tx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Mark a transaction's inputs dirty, thus forcing the outputs to be recomputed.
bool HasWalletSpend(const CTransactionRef &tx) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Check if a given transaction has any of its outputs spent by another transaction in the wallet.
bool ChangeWalletPassphrase(const SecureString &strOldWalletPassphrase, const SecureString &strNewWalletPassphrase)
bool AbandonTransaction(const Txid &hashTx)
void SyncMetaData(std::pair< TxSpends::iterator, TxSpends::iterator >) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void SetWalletFlagWithDB(WalletBatch &batch, uint64_t flags)
Store wallet flags.
static bool EncryptMasterKey(const SecureString &wallet_passphrase, const CKeyingMaterial &plain_master_key, CMasterKey &master_key)
uint64_t GetWalletFlags() const
Retrieve all of the wallet's flags.
void updatedBlockTip() override
bool TransactionCanBeAbandoned(const Txid &hashTx) const
Return whether transaction can be abandoned.
void BlockUntilSyncedToCurrentChain() const LOCKS_EXCLUDED(void SetWalletFlag(uint64_t flags)
Blocks until the wallet state is up-to-date to /at least/ the current chain at the time this function...
void MaybeUpdateBirthTime(int64_t time)
Updates wallet birth time if 'time' is below it.
void blockDisconnected(const interfaces::BlockInfo &block) override
ScanResult ScanForWalletTransactions(const uint256 &start_block, int start_height, std::optional< int > max_height, const WalletRescanReserver &reserver, bool fUpdate, bool save_progress)
Scan the block chain (starting in start_block) for transactions from or to us.
std::set< Txid > GetConflicts(const Txid &txid) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Get wallet transactions that conflict with given transaction (spend same outputs)
bool IsWalletFlagSet(uint64_t flag) const override
check if a certain wallet flag is set
static bool DecryptMasterKey(const SecureString &wallet_passphrase, const CMasterKey &master_key, CKeyingMaterial &plain_master_key)
void AddToSpends(const COutPoint &outpoint, const Txid &txid) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void SetLastBlockProcessedInMem(int block_height, uint256 block_hash) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void UnsetWalletFlagWithDB(WalletBatch &batch, uint64_t flag)
Unsets a wallet flag and saves it to disk.
bool IsSpent(const COutPoint &outpoint) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Outpoint is spent if any non-conflicted transaction spends it:
void ResubmitWalletTransactions(node::TxBroadcast broadcast_method, bool force)
std::set< Txid > GetTxConflicts(const CWalletTx &wtx) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void UnsetBlankWalletFlag(WalletBatch &batch) override
Unset the blank wallet flag and saves it to disk.
CWalletTx * AddToWallet(CTransactionRef tx, const TxState &state, const UpdateWalletTxFn &update_wtx=nullptr, bool rescanning_old_block=false)
Add the transaction to the wallet, wrapping it up inside a CWalletTx.
bool MarkReplaced(const Txid &originalHash, const Txid &newHash)
Mark a transaction as replaced by another transaction.
bool CanGetAddresses(bool internal=false) const
void UpdateTrucSiblingConflicts(const CWalletTx &parent_wtx, const Txid &child_txid, bool add_conflict) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Update mempool conflicts for TRUC sibling transactions.
bool LoadWalletFlags(uint64_t flags)
Loads the flags into the wallet.
bool SubmitTxMemoryPoolAndRelay(CWalletTx &wtx, std::string &err_string, node::TxBroadcast broadcast_method) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Pass this transaction to node for optional mempool insertion and relay to peers.
void blockConnected(const kernel::ChainstateRole &role, const interfaces::BlockInfo &block) override
void transactionRemovedFromMempool(const CTransactionRef &tx, MemPoolRemovalReason reason) override
static NodeClock::time_point GetDefaultNextResend()
bool ShouldResend() const
Return true if all conditions for periodically resending transactions are met.
const CWalletTx * GetWalletTx(const Txid &hash) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void InitWalletFlags(uint64_t flags)
overwrite all flags by the given uint64_t flags must be uninitialised (or 0) only known flags may be ...
bool SyncTransaction(const CTransactionRef &tx, const SyncTxState &state, bool update_tx=true, bool rescanning_old_block=false) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void UnsetWalletFlag(uint64_t flag)
Unsets a single wallet flag.
bool EncryptWallet(const SecureString &strWalletPassphrase)
void SetLastBlockProcessed(int block_height, uint256 block_hash) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Set last block processed height, and write to database.
bool LoadToWallet(const Txid &hash, const UpdateWalletTxFn &fill_wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
int64_t RescanFromTime(int64_t startTime, const WalletRescanReserver &reserver, bool update)
Scan active chain for relevant transactions after importing keys.
bool IsFromMe(const CTransaction &tx) const
should probably be renamed to IsRelevantToMe
DBErrors ReorderTransactions()
bool AddToWalletIfInvolvingMe(const CTransactionRef &tx, const SyncTxState &state, bool fUpdate, bool rescanning_old_block) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Add a transaction to the wallet, or update it.
bool IsMine(const CTxDestination &dest) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void UpgradeDescriptorCache() EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Upgrade DescriptorCaches.
void SetSpentKeyState(WalletBatch &batch, const Txid &hash, unsigned int n, bool used, std::set< CTxDestination > &tx_destinations) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
CAmount GetDebit(const CTxIn &txin) const
Returns amount of debit, i.e.
void MarkConflicted(const uint256 &hashBlock, int conflicting_height, const Txid &hashTx)
Mark a transaction (and its in-wallet descendants) as conflicting with a particular block.
void transactionAddedToMempool(const CTransactionRef &tx) override
void Close()
Close wallet database.
@ SIGHASH_DEFAULT
Taproot only; implied when sighash byte is missing, and equivalent to SIGHASH_ALL.
is a home for simple enum and struct type definitions that can be used internally by functions in the...
CKey GenerateRandomKey(bool compressed) noexcept
std::string EncodeDestination(const CTxDestination &dest)
#define LogDebug(category,...)
MemPoolRemovalReason
Reason why a transaction was removed from the mempool, this is passed to the notification signal.
@ BLOCK
Removed for block.
@ CONFLICT
Removed for conflict with in-block transaction.
is a home for simple string functions returning descriptive messages that are used in RPC and GUI int...
std::optional< CAmount > ParseMoney(const std::string &money_string)
Parse an amount denoted in full coins.
static int sign(const secp256k1_context *ctx, struct signer_secrets *signer_secrets, struct signer *signer, const secp256k1_musig_keyagg_cache *cache, const unsigned char *msg32, unsigned char *sig64)
auto FindKey(Map &&map, Key &&key) -> decltype(&map.at(key))
Map lookup helper.
bilingual_str AmountErrMsg(const std::string &optname, const std::string &strValue)
bilingual_str AmountHighWarn(const std::string &optname)
fs::path AbsPathJoin(const fs::path &base, const fs::path &path)
Helper function for joining two paths.
std::unique_ptr< Handler > MakeCleanupHandler(std::function< void()> cleanup)
Return handler wrapping a cleanup function.
std::unique_ptr< Wallet > MakeWallet(wallet::WalletContext &context, const std::shared_ptr< wallet::CWallet > &wallet)
Return implementation of Wallet interface.
TxBroadcast
How to broadcast a local transaction.
@ MEMPOOL_AND_BROADCAST_TO_ALL
Add the transaction to the mempool and broadcast to all peers for which tx relay is enabled.
@ MEMPOOL_NO_BROADCAST
Add the transaction to the mempool, but don't broadcast to anybody.
@ NO_MEMPOOL_PRIVATE_BROADCAST
Omit the mempool and directly send the transaction via a few dedicated connections to peers on privac...
bilingual_str ErrorString(const Result< T > &result)
std::string_view RemoveSuffixView(std::string_view str, std::string_view suffix)
std::string ToString(const T &t)
Locale-independent version of std::to_string.
void ReplaceAll(std::string &in_out, const std::string &search, const std::string &substitute)
std::variant< TxStateConfirmed, TxStateInMempool, TxStateInactive > SyncTxState
Subset of states transaction sync logic is implemented to handle.
constexpr CAmount HIGH_APS_FEE
discourage APS fee higher than this amount
void ReadDatabaseArgs(const ArgsManager &args, DatabaseOptions &options)
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::unique_ptr< WalletDatabase > MakeDatabase(const fs::path &path, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error)
void MaybeResendWalletTxs(WalletContext &context)
Called periodically by the schedule thread.
std::vector< std::shared_ptr< CWallet > > GetWallets(WalletContext &context)
static bool RunWithinTxn(WalletBatch &batch, std::string_view process_desc, const std::function< bool(WalletBatch &)> &func)
std::map< std::string, std::string > mapValue_t
std::vector< unsigned char, secure_allocator< unsigned char > > CKeyingMaterial
DBErrors
Overview of wallet database classes:
@ UNEXPECTED_LEGACY_ENTRY
@ EXTERNAL_SIGNER_SUPPORT_REQUIRED
static int TxStateSerializedIndex(const TxState &state)
Get TxState serialized block index. Inverse of TxStateInterpretSerialized.
bool AddWalletSetting(interfaces::Chain &chain, const std::string &wallet_name)
Add wallet name to persistent configuration so it will be loaded on startup.
static GlobalMutex g_wallet_release_mutex
bool RemoveWalletSetting(interfaces::Chain &chain, const std::string &wallet_name)
Remove wallet name from persistent configuration so it will not be loaded on startup.
const unsigned int WALLET_CRYPTO_KEY_SIZE
static void RefreshMempoolStatus(CWalletTx &tx, interfaces::Chain &chain)
Refresh mempool status so the wallet is in an internally consistent state and immediately knows the t...
static const bool DEFAULT_WALLETCROSSCHAIN
std::unique_ptr< interfaces::Handler > HandleLoadWallet(WalletContext &context, LoadWalletFn load_wallet)
bool HasLegacyRecords(CWallet &wallet)
Returns true if there are any DBKeys::LEGACY_TYPES record in the wallet db.
fs::path GetWalletDir()
Get the path of the wallet directory.
static const unsigned int DEFAULT_KEYPOOL_SIZE
Default for -keypool.
static const std::unordered_set< OutputType > LEGACY_OUTPUT_TYPES
OutputTypes supported by the LegacyScriptPubKeyMan.
util::Result< MigrationResult > MigrateLegacyToDescriptor(const std::string &wallet_name, const SecureString &passphrase, WalletContext &context)
Do all steps to migrate a legacy wallet to a descriptor wallet.
static const bool DEFAULT_WALLET_RBF
-walletrbf default
constexpr CAmount HIGH_TX_FEE_PER_KB
Discourage users to set fees higher than this amount (in satoshis) per kB.
static std::condition_variable g_wallet_release_cv
std::unique_ptr< WalletDatabase > MakeWalletDatabase(const std::string &name, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error_string)
bool IsBDBFile(const fs::path &path)
void NotifyWalletLoaded(WalletContext &context, const std::shared_ptr< CWallet > &wallet)
fs::path BDBDataFile(const fs::path &wallet_path)
constexpr CAmount HIGH_MAX_TX_FEE
-maxtxfee will warn if called with a higher fee than this amount (in satoshis)
static const unsigned int DEFAULT_TX_CONFIRM_TARGET
-txconfirmtarget default
std::shared_ptr< CWallet > RestoreWallet(WalletContext &context, const fs::path &backup_file, const std::string &wallet_name, std::optional< bool > load_on_start, DatabaseStatus &status, bilingual_str &error, std::vector< bilingual_str > &warnings, bool load_after_restore, bool allow_unnamed)
std::string PurposeToString(AddressPurpose p)
static const bool DEFAULT_WALLETBROADCAST
std::function< void(std::unique_ptr< interfaces::Wallet > wallet)> LoadWalletFn
bool AddWallet(WalletContext &context, const std::shared_ptr< CWallet > &wallet)
bool DoMigration(CWallet &wallet, WalletContext &context, bilingual_str &error, MigrationResult &res) EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet)
static uint256 TxStateSerializedBlockHash(const TxState &state)
Get TxState serialized block hash. Inverse of TxStateInterpretSerialized.
static constexpr uint64_t KNOWN_WALLET_FLAGS
std::variant< TxStateConfirmed, TxStateInMempool, TxStateBlockConflicted, TxStateInactive, TxStateUnrecognized > TxState
All possible CWalletTx states.
static void UpdateWalletSetting(interfaces::Chain &chain, const std::string &wallet_name, std::optional< bool > load_on_startup, std::vector< bilingual_str > &warnings)
static std::string MigrationPrefixName(CWallet &wallet)
static GlobalMutex g_loading_wallet_mutex
const unsigned int WALLET_CRYPTO_SALT_SIZE
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)
static void FlushAndDeleteWallet(CWallet *wallet)
@ WALLET_FLAG_LAST_HARDENED_XPUB_CACHED
@ WALLET_FLAG_KEY_ORIGIN_METADATA
@ WALLET_FLAG_AVOID_REUSE
@ WALLET_FLAG_DESCRIPTORS
Indicate that this wallet supports DescriptorScriptPubKeyMan.
@ WALLET_FLAG_DISABLE_PRIVATE_KEYS
@ WALLET_FLAG_BLANK_WALLET
Flag set when a wallet contains no HD seed and no private keys, scripts, addresses,...
void WaitForDeleteWallet(std::shared_ptr< CWallet > &&wallet)
Explicitly delete the wallet.
std::string TxStateString(const T &state)
Return TxState or SyncTxState as a string for logging or debugging.
std::shared_ptr< CWallet > GetWallet(WalletContext &context, const std::string &name)
static const bool DEFAULT_SPEND_ZEROCONF_CHANGE
Default for -spendzeroconfchange.
static util::Result< fs::path > GetWalletPath(const std::string &name)
@ FAILED_INVALID_BACKUP_FILE
bool RemoveWallet(WalletContext &context, const std::shared_ptr< CWallet > &wallet, std::optional< bool > load_on_start, std::vector< bilingual_str > &warnings)
std::shared_ptr< CWallet > GetDefaultWallet(WalletContext &context, size_t &count)
is a home for public enum and struct type definitions that are used internally by node code,...
std::optional< OutputType > ParseOutputType(std::string_view type)
const std::string & FormatOutputType(OutputType type)
static constexpr auto OUTPUT_TYPES
static CTransactionRef MakeTransactionRef(Tx &&txIn)
std::shared_ptr< const CTransaction > CTransactionRef
bool PSBTInputSignedAndVerified(const PartiallySignedTransaction &psbt, unsigned int input_index, const PrecomputedTransactionData *txdata)
Checks whether a PSBTInput is already signed by doing script verification using final fields.
void RemoveUnnecessaryTransactions(PartiallySignedTransaction &psbtx)
Reduces the size of the PSBT by dropping unnecessary non_witness_utxos (i.e.
bool PSBTInputSigned(const PSBTInput &input)
Checks whether a PSBTInput is already signed by checking for non-null finalized fields.
PrecomputedTransactionData PrecomputePSBTData(const PartiallySignedTransaction &psbt)
Compute a PrecomputedTransactionData object from a psbt.
void GetStrongRandBytes(std::span< unsigned char > bytes) noexcept
Gather entropy from various sources, feed it into the internal PRNG, and generate random data using i...
static const int64_t values[]
A selection of numbers that do not trigger int64_t overflow when added/subtracted.
std::basic_string< char, std::char_traits< char >, secure_allocator< char > > SecureString
@ PRIVATE_KEY_NOT_AVAILABLE
Describes a place in the block chain to another node such that if the other node doesn't have the sam...
std::vector< uint256 > vHave
void SetSeed(std::span< const std::byte > seed)
A mutable version of CTransaction.
static time_point now() noexcept
Return current system time or mocked time, if set.
std::chrono::time_point< NodeClock > time_point
A version of CTransaction with the PSBT format.
Block data sent with blockConnected, blockDisconnected notifications.
const uint256 * prev_hash
unsigned int chain_time_max
Information about chainstate that notifications are sent from.
bool historical
Whether this is a historical chainstate downloading old blocks to validate an assumeutxo snapshot,...
void SetLabel(std::string name)
std::optional< std::string > m_op_label
std::optional< int > last_scanned_height
uint256 last_scanned_block
Hash and height of most recent block that was successfully scanned.
uint256 last_failed_block
Height of the most recent block that could not be scanned due to read errors or pruning.
enum wallet::CWallet::ScanResult::@18 status
SecureString create_passphrase
std::optional< DatabaseFormat > require_format
struct containing information needed for migrating legacy wallets to descriptor wallets
State of rejected transaction that conflicts with a confirmed block.
int conflicting_block_height
State of transaction confirmed in a block.
int confirmed_block_height
State of transaction added to mempool.
State of transaction not confirmed or conflicting with a known block and not in the mempool.
WalletContext struct containing references to state shared between CWallet instances,...
interfaces::Chain * chain
#define WAIT_LOCK(cs, name)
#define AssertLockNotHeld(cs)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
#define AssertLockHeld(cs)
#define EXCLUSIVE_LOCKS_REQUIRED(...)
consteval auto _(util::TranslatedLiteral str)
bilingual_str Untranslated(std::string original)
Mark a bilingual_str as untranslated.
static constexpr decltype(CTransaction::version) TRUC_VERSION
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
std::chrono::duration< double, std::chrono::milliseconds::period > MillisecondsDouble
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
std::shared_ptr< CWallet > m_wallet
is a home for public enum and struct type definitions that are used by internally by wallet code,...
GCSFilter::ElementSet m_filter_set
std::map< uint256, int32_t > m_last_range_ends
Map for keeping track of each range descriptor's last seen end range.
std::vector< std::byte, zero_after_free_allocator< std::byte > > SerializeData
Byte-vector that clears its contents before deletion.