8#include <bitcoin-build-config.h>
11#include <blockfilter.h>
79#include <condition_variable>
104 if (!setting_value.isArray()) setting_value.setArray();
105 for (
const auto& value : setting_value.getValues()) {
108 setting_value.push_back(wallet_name);
117 if (!setting_value.isArray()) {
118 if (wallet_name.empty() && setting_value.isNull()) {
120 setting_value.setArray();
126 for (
const auto& value : setting_value.getValues()) {
127 if (!value.isStr() || value.get_str() != wallet_name) new_value.
push_back(value);
130 setting_value = std::move(new_value);
137 const std::string& wallet_name,
138 std::optional<bool> load_on_startup,
139 std::vector<bilingual_str>& warnings)
141 if (!load_on_startup)
return;
143 warnings.emplace_back(
Untranslated(
"Wallet load on startup setting could not be updated, so wallet may not be loaded next node startup."));
145 warnings.emplace_back(
Untranslated(
"Wallet load on startup setting could not be updated, so wallet may still be loaded next node startup."));
167 std::vector<std::shared_ptr<CWallet>>::const_iterator i = std::find(context.wallets.begin(), context.wallets.end(),
wallet);
168 if (i != context.wallets.end())
return false;
169 context.wallets.push_back(
wallet);
170 wallet->ConnectScriptPubKeyManNotifiers();
171 wallet->NotifyCanGetAddressesChanged();
184 wallet->DisconnectChainNotifications();
187 std::vector<std::shared_ptr<CWallet>>::iterator i = std::find(context.wallets.begin(), context.wallets.end(),
wallet);
188 if (i == context.wallets.end())
return false;
189 context.wallets.erase(i);
202 std::vector<bilingual_str> warnings;
209 return context.wallets;
215 count = context.wallets.size();
216 return count == 1 ? context.wallets[0] :
nullptr;
222 for (
const std::shared_ptr<CWallet>&
wallet : context.wallets) {
231 auto it = context.wallet_load_fns.emplace(context.wallet_load_fns.end(), std::move(load_wallet));
238 for (
auto& load_wallet : context.wallet_load_fns) {
253 wallet->WalletLogPrintf(
"Releasing wallet %s..\n",
name);
258 if (g_unloading_wallet_set.erase(
name) == 0) {
272 g_unloading_wallet_set.insert(
name);
281 while (g_unloading_wallet_set.contains(
name)) {
288std::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)
297 context.chain->initMessage(
_(
"Loading wallet…"));
307 wallet->postInitProcess();
313 }
catch (
const std::runtime_error& e) {
324 if (!result.second) {
329 auto wallet = LoadWalletInternal(context,
name, load_on_start, options, status, error, warnings);
345 bool born_encrypted = !passphrase.empty();
354 error =
Untranslated(
"Private keys must be disabled when using an external signer");
361 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.");
376 std::shared_ptr<CWallet>
wallet =
CWallet::CreateNew(context,
name, std::move(database), wallet_creation_flags, born_encrypted, error, warnings);
384 if (born_encrypted) {
385 if (!
wallet->EncryptWallet(passphrase)) {
386 error =
Untranslated(
"Error: Wallet created but failed to encrypt.");
395 wallet->postInitProcess();
406std::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)
410 if (!allow_unnamed && wallet_name.empty()) {
421 auto wallet_file = wallet_path /
"wallet.dat";
422 std::shared_ptr<CWallet>
wallet;
423 bool wallet_file_copied =
false;
424 bool created_parent_dir =
false;
437 if (!fs::is_directory(wallet_path)) {
456 created_parent_dir =
true;
459 fs::copy_file(backup_file, wallet_file, fs::copy_options::none);
460 wallet_file_copied =
true;
462 if (load_after_restore) {
463 wallet =
LoadWallet(context, wallet_name, load_on_start, options, status, error, warnings);
465 }
catch (
const std::exception& e) {
472 if (load_after_restore && !
wallet) {
473 if (wallet_file_copied) fs::remove(wallet_file);
476 if (created_parent_dir) {
477 Assume(fs::is_empty(wallet_path));
478 fs::remove(wallet_path);
488 m_database(
std::move(database)),
510 const auto it = mapWallet.find(hash);
511 if (it == mapWallet.end())
513 return &(it->second);
538 for (
int i = 0; i < 2; i++){
540 const bool key_set{crypter.
SetKeyFromPassphrase(wallet_passphrase, updated_master_key.vchSalt, updated_master_key.nDeriveIterations, updated_master_key.nDerivationMethod)};
546 if (elapsed_time <= 0
s) {
553 const double target_iterations{updated_master_key.nDeriveIterations * target_time / elapsed_time};
554 if (target_iterations < 1 || target_iterations > std::numeric_limits<unsigned int>::max()) {
559 updated_master_key.nDeriveIterations = (uint64_t{updated_master_key.nDeriveIterations} * i +
static_cast<unsigned int>(target_iterations)) / (i + 1);
566 if (!crypter.
SetKeyFromPassphrase(wallet_passphrase, updated_master_key.vchSalt, updated_master_key.nDeriveIterations, updated_master_key.nDerivationMethod)) {
569 if (!crypter.
Encrypt(plain_master_key, updated_master_key.vchCryptedKey)) {
573 master_key = std::move(updated_master_key);
601 if (
Unlock(plain_master_key)) {
622 if (!
DecryptMasterKey(strOldWalletPassphrase, master_key, plain_master_key)) {
625 if (
Unlock(plain_master_key))
627 if (!
EncryptMasterKey(strNewWalletPassphrase, plain_master_key, master_key)) {
630 WalletLogPrintf(
"Wallet passphrase changed to an nDeriveIterations of %i\n", master_key.nDeriveIterations);
647 m_last_block_processed = block_hash;
648 m_last_block_processed_height = block_height;
661 std::set<Txid> result;
664 const auto it = mapWallet.find(txid);
665 if (it == mapWallet.end())
669 std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range;
673 if (mapTxSpends.count(txin.prevout) <= 1)
675 range = mapTxSpends.equal_range(txin.prevout);
676 for (TxSpends::const_iterator _it = range.first; _it != range.second; ++_it)
677 result.insert(_it->second);
685 const Txid& txid = tx->GetHash();
686 for (
unsigned int i = 0; i < tx->vout.size(); ++i) {
702 std::set<CWalletTx*, WalletTxOrderComparator> txs;
708 if (std::ranges::none_of(wtx.
GetTx()->vin, [](
const CTxIn& in) { return in.scriptWitness.IsNull(); })) {
713 bool found_self =
false;
714 const auto [begin, end] = mapTxSpends.equal_range(wtx.
GetTx()->vin.front().prevout);
715 for (
auto it = begin; it != end; ++it) {
716 auto entry = mapWallet.find(it->second);
717 if (!
Assume(entry != mapWallet.end()))
continue;
718 const bool is_self = &entry->second == &wtx;
719 found_self |= is_self;
721 Assume(txs.insert(&entry->second).second);
732 if (txs.size() <= 1)
return;
735 const CWalletTx* copyFrom = *txs.begin();
739 const auto metadata = [](
auto& tx) {
740 return std::tie(tx.m_from, tx.m_message, tx.m_comment, tx.m_comment_to,
741 tx.m_replaces_txid, tx.m_replaced_by_txid,
742 tx.m_messages, tx.m_payment_requests, tx.nTimeSmart);
747 if (copyTo == copyFrom)
continue;
748 metadata(*copyTo) = metadata(*copyFrom);
759 std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range;
760 range = mapTxSpends.equal_range(outpoint);
762 for (TxSpends::const_iterator it = range.first; it != range.second; ++it) {
763 const Txid& txid = it->second;
764 const auto mit = mapWallet.find(txid);
765 if (mit != mapWallet.end()) {
766 const auto& wtx = mit->second;
767 if (!wtx.isAbandoned() && !wtx.isBlockConflicted() && !wtx.isMempoolConflicted())
778 std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range;
779 range = mapTxSpends.equal_range(outpoint);
781 for (TxSpends::const_iterator it = range.first; it != range.second; ++it) {
782 const Txid& txid = it->second;
783 const auto mit = mapWallet.find(txid);
784 if (mit != mapWallet.end()) {
785 const auto& wtx = mit->second;
787 if (wtx.InMempool()) {
789 }
else if (!wtx.isAbandoned() && !wtx.isBlockConflicted() && !wtx.isMempoolConflicted()) {
799 mapTxSpends.insert(std::make_pair(outpoint, txid));
842 delete encrypted_batch;
843 encrypted_batch =
nullptr;
849 auto spk_man = spk_man_pair.second.get();
850 if (!spk_man->Encrypt(plain_master_key, encrypted_batch)) {
852 delete encrypted_batch;
853 encrypted_batch =
nullptr;
861 delete encrypted_batch;
862 encrypted_batch =
nullptr;
868 delete encrypted_batch;
869 encrypted_batch =
nullptr;
872 if (!
Unlock(strWalletPassphrase)) {
898 typedef std::multimap<int64_t, CWalletTx*>
TxItems;
901 for (
auto& entry : mapWallet)
908 std::vector<int64_t> nOrderPosOffsets;
909 for (TxItems::iterator it = txByTime.begin(); it != txByTime.end(); ++it)
916 nOrderPos = nOrderPosNext++;
917 nOrderPosOffsets.push_back(nOrderPos);
924 int64_t nOrderPosOff = 0;
925 for (
const int64_t& nOffsetStart : nOrderPosOffsets)
927 if (nOrderPos >= nOffsetStart)
930 nOrderPos += nOrderPosOff;
931 nOrderPosNext = std::max(nOrderPosNext, nOrderPos + 1);
949 int64_t nRet = nOrderPosNext++;
962 for (
auto& [
_, wtx] : mapWallet)
971 auto mi = mapWallet.find(originalHash);
974 assert(mi != mapWallet.end());
997 if (variant == &wtx)
continue;
998 variant->m_replaced_by_txid = newHash;
1000 WalletLogPrintf(
"%s: Updating variant tx %s failed\n", __func__, variant->GetHash().ToString());
1021 tx_destinations.insert(dst);
1048 Txid hash = tx->GetHash();
1052 std::set<CTxDestination> tx_destinations;
1054 for (
const CTxIn& txin : tx->vin) {
1063 auto ret = mapWallet.emplace(std::piecewise_construct, std::forward_as_tuple(hash), std::forward_as_tuple(tx, state));
1065 bool fInsertedNew =
ret.second;
1066 bool fUpdated = update_wtx && update_wtx(wtx, fInsertedNew);
1086 fUpdated |= wtx.
Update(tx, state, batch, fUpdated);
1087 }
catch (
const std::ios_base::failure& e) {
1095 std::vector<CWalletTx*> txs{&wtx};
1099 while (!txs.empty()) {
1102 desc_tx->
m_state = inactive_state;
1107 for (
unsigned int i = 0; i < desc_tx->
GetTx()->vout.size(); ++i) {
1109 std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(outpoint);
1110 for (TxSpends::const_iterator it = range.first; it != range.second; ++it) {
1111 const auto wit = mapWallet.find(it->second);
1112 if (wit != mapWallet.end()) {
1113 txs.push_back(&wit->second);
1121 std::string status{
"no-change"};
1122 if (fInsertedNew || fUpdated) {
1123 status = fInsertedNew ? (fUpdated ?
"new, update" :
"new") :
"update";
1140 if (!strCmd.empty())
1145 ReplaceAll(strCmd,
"%b", conf->confirmed_block_hash.GetHex());
1169 const auto& ins = mapWallet.emplace(wtx_in.GetHash(), std::move(wtx_in));
1182 auto it = mapWallet.find(txin.prevout.hash);
1183 if (it != mapWallet.end()) {
1205 if (
auto* conf = std::get_if<TxStateConfirmed>(&state)) {
1207 std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(txin.
prevout);
1208 while (range.first != range.second) {
1209 if (range.first->second != tx.
GetHash()) {
1210 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);
1211 MarkConflicted(conf->confirmed_block_hash, conf->confirmed_block_height, range.first->second);
1218 bool fExisted = mapWallet.contains(tx.
GetHash());
1230 for (
auto &dest : spk_man->MarkUnusedAddresses(txout.
scriptPubKey)) {
1232 if (!dest.internal.has_value()) {
1237 if (!dest.internal.has_value())
continue;
1251 TxState tx_state = std::visit([](
auto&&
s) ->
TxState {
return s; }, state);
1256 throw std::runtime_error(
"DB error adding transaction to wallet, write failed");
1275 for (
long unsigned int i = 0; i < parent_wtx.GetTx()->vout.size(); i++) {
1276 for (
auto range = mapTxSpends.equal_range(
COutPoint(parent_wtx.GetTx()->GetHash(), i)); range.first != range.second; range.first++) {
1277 const Txid& sibling_txid = range.first->second;
1279 if (sibling_txid == child_txid)
continue;
1281 return add_conflict ? (wtx.
mempool_conflicts.insert(child_txid).second ? TxUpdate::CHANGED : TxUpdate::UNCHANGED)
1282 : (wtx.
mempool_conflicts.erase(child_txid) ? TxUpdate::CHANGED : TxUpdate::UNCHANGED);
1290 for (
const CTxIn& txin : tx->vin) {
1292 if (it != mapWallet.end()) {
1293 it->second.MarkDirty();
1301 auto it = mapWallet.find(hashTx);
1302 assert(it != mapWallet.end());
1315 assert(!wtx.isConfirmed());
1316 assert(!wtx.InMempool());
1318 if (!wtx.isBlockConflicted() && !wtx.isAbandoned()) {
1344 if (m_last_block_processed_height < 0 || conflicting_height < 0) {
1347 int conflictconfirms = (m_last_block_processed_height - conflicting_height + 1) * -1;
1348 if (conflictconfirms >= 0)
1372 std::set<Txid> todo;
1373 std::set<Txid> done;
1375 todo.insert(tx_hash);
1377 while (!todo.empty()) {
1381 auto it = mapWallet.find(now);
1382 assert(it != mapWallet.end());
1385 TxUpdate update_state = try_updating_state(wtx);
1390 for (
unsigned int i = 0; i < wtx.
GetTx()->vout.size(); ++i) {
1391 std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(
COutPoint(now, i));
1392 for (TxSpends::const_iterator iter = range.first; iter != range.second; ++iter) {
1393 if (!done.contains(iter->second)) {
1394 todo.insert(iter->second);
1426 auto it = mapWallet.find(tx->GetHash());
1427 if (it != mapWallet.end()) {
1431 const Txid& txid = tx->GetHash();
1433 for (
const CTxIn& tx_in : tx->vin) {
1435 for (
auto range = mapTxSpends.equal_range(tx_in.
prevout); range.first != range.second; range.first++) {
1436 const Txid& spent_id = range.first->second;
1438 if (spent_id == txid)
continue;
1450 for (
const CTxIn& tx_in : tx->vin) {
1451 auto parent_it = mapWallet.find(tx_in.
prevout.
hash);
1452 if (parent_it != mapWallet.end()) {
1453 CWalletTx& parent_wtx = parent_it->second;
1467 auto it = mapWallet.find(tx->GetHash());
1468 if (it != mapWallet.end()) {
1501 const Txid& txid = tx->GetHash();
1503 for (
const CTxIn& tx_in : tx->vin) {
1507 for (
auto range = mapTxSpends.equal_range(tx_in.
prevout); range.first != range.second; range.first++) {
1508 const Txid& spent_id = range.first->second;
1521 for (
const CTxIn& tx_in : tx->vin) {
1522 auto parent_it = mapWallet.find(tx_in.
prevout.
hash);
1523 if (parent_it != mapWallet.end()) {
1524 CWalletTx& parent_wtx = parent_it->second;
1551 bool wallet_updated =
false;
1552 for (
size_t index = 0; index < block.
data->
vtx.size(); index++) {
1558 if (wallet_updated || block.
height % 144 == 0) {
1572 int disconnect_height = block.
height;
1574 for (
size_t index = 0; index < block.
data->
vtx.size(); index++) {
1580 for (
const CTxIn& tx_in : ptx->vin) {
1582 if (!mapTxSpends.contains(tx_in.
prevout))
continue;
1584 std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(tx_in.
prevout);
1587 for (TxSpends::const_iterator _it = range.first; _it != range.second; ++_it) {
1588 CWalletTx& wtx = mapWallet.find(_it->second)->second;
1592 auto try_updating_state = [&](
CWalletTx& tx) {
1615void CWallet::BlockUntilSyncedToCurrentChain()
const {
1632 return txo->GetTxOut().nValue;
1657 for (
const auto& spkm : it->second) {
1658 res = res || spkm->IsMine(
script);
1683 if (outpoint.
n >= wtx->GetTx()->vout.size()) {
1686 return IsMine(wtx->GetTx()->vout[outpoint.
n]);
1705 throw std::runtime_error(std::string(__func__) +
": value out of range");
1713 bool result =
false;
1715 if (!spk_man->IsHDEnabled())
return false;
1727 if (spk_man && spk_man->CanGetAddresses(internal)) {
1745 throw std::runtime_error(std::string(__func__) +
": writing wallet flags failed");
1759 throw std::runtime_error(std::string(__func__) +
": writing wallet flags failed");
1794 throw std::runtime_error(std::string(__func__) +
": writing wallet flags failed");
1808 if (time < birthtime) {
1814 std::string& err_string,
1829 const char* what{
""};
1830 switch (broadcast_method) {
1832 what =
"to mempool and for broadcast to peers";
1835 what =
"to mempool without broadcast";
1838 what =
"for private broadcast without adding to the mempool";
1862 result.erase(myHash);
1874 if (!
chain().isReadyToBroadcast())
return false;
1916 int submitted_tx_count = 0;
1923 std::set<CWalletTx*, WalletTxOrderComparator> to_submit;
1924 for (
auto& [txid, wtx] : mapWallet) {
1926 if (!wtx.isUnconfirmed())
continue;
1931 to_submit.insert(&wtx);
1934 for (
auto wtx : to_submit) {
1935 std::string unused_err_string;
1940 if (submitted_tx_count > 0) {
1941 WalletLogPrintf(
"%s: resubmit %u unconfirmed transactions\n", __func__, submitted_tx_count);
1949 for (
const std::shared_ptr<CWallet>& pwallet :
GetWallets(context)) {
1950 if (!pwallet->ShouldResend())
continue;
1952 pwallet->SetNextResend();
1962 std::map<COutPoint, Coin> coins;
1963 for (
auto& input : tx.
vin) {
1964 const auto mi = mapWallet.find(input.prevout.hash);
1965 if(mi == mapWallet.end() || input.prevout.n >= mi->second.GetTx()->vout.size()) {
1970 coins[input.prevout] =
Coin(wtx.
GetTx()->vout[input.prevout.n], prev_height, wtx.
IsCoinBase());
1972 std::map<int, bilingual_str> input_errors;
1982 if (spk_man->SignTransaction(tx, coins, sighash, input_errors)) {
2006 const auto it = mapWallet.find(txhash);
2007 if (it != mapWallet.end()) {
2018 return PSBTError::INVALID_TX;
2024 int n_signed_this_spkm = 0;
2025 const auto error{spk_man->FillPSBT(psbtx, txdata, options, &n_signed_this_spkm)};
2031 (*n_signed) += n_signed_this_spkm;
2039 for (
size_t i = 0; i < psbtx.
inputs.size(); ++i) {
2051 if (spk_man_pair.second->CanProvide(script_pub_key, sigdata)) {
2053 return spk_man_pair.second->SignMessage(message, pkhash, str_sig);
2063 return *change_type;
2072 bool any_wpkh{
false};
2074 bool any_pkh{
false};
2076 for (
const auto& recipient : vecSend) {
2077 if (std::get_if<WitnessV1Taproot>(&recipient.dest)) {
2079 }
else if (std::get_if<WitnessV0KeyHash>(&recipient.dest)) {
2081 }
else if (std::get_if<ScriptHash>(&recipient.dest)) {
2083 }
else if (std::get_if<PKHash>(&recipient.dest)) {
2089 if (has_bech32m_spkman && any_tr) {
2094 if (has_bech32_spkman && any_wpkh) {
2099 if (has_p2sh_segwit_spkman && any_sh) {
2105 if (has_legacy_spkman && any_pkh) {
2110 if (has_bech32m_spkman) {
2113 if (has_bech32_spkman) {
2122 std::optional<Txid> replaces_txid,
2123 std::optional<std::string> comment,
2124 std::optional<std::string> comment_to,
2125 const std::vector<std::string>&
messages,
2126 const std::vector<std::string>& payment_requests
2145 throw std::runtime_error(std::string(__func__) +
": Wallet db error, transaction commit failed");
2149 for (
const CTxIn& txin : tx->vin) {
2160 std::string err_string;
2162 WalletLogPrintf(
"CommitTransaction(): Transaction cannot be broadcast immediately, %s\n", err_string);
2180 const auto wallet_file =
m_database->Filename();
2181 switch (nLoadWalletRet) {
2185 warnings.push_back(
strprintf(
_(
"Error reading %s! All keys read correctly, but transaction data"
2186 " or address metadata may be missing or incorrect."),
2190 warnings.push_back(
strprintf(
_(
"Error reading %s! Transaction data may be missing or incorrect."
2191 " Rescanning wallet."), wallet_file));
2194 error =
strprintf(
_(
"Error loading %s: Wallet corrupted"), wallet_file);
2197 error =
strprintf(
_(
"Error loading %s: Wallet requires newer version of %s"), wallet_file, CLIENT_NAME);
2200 error =
strprintf(
_(
"Error loading %s: External signer wallet being loaded without external signer support compiled"), wallet_file);
2203 error =
strprintf(
_(
"Unrecognized descriptor found. Loading wallet %s\n\n"
2204 "The wallet might have been created on a newer version.\n"
2205 "Please try running the latest software version.\n"), wallet_file);
2208 error =
strprintf(
_(
"Unexpected legacy entry in descriptor wallet found. Loading wallet %s\n\n"
2209 "The wallet might have been tampered with or created with malicious intent.\n"), wallet_file);
2212 error =
strprintf(
_(
"Error loading %s: Wallet is a legacy wallet. Please migrate to a descriptor wallet using the migration tool (migratewallet RPC)."), wallet_file);
2215 error =
strprintf(
_(
"Error loading %s"), wallet_file);
2218 return nLoadWalletRet;
2228 return result.has_value();
2231 if (!was_txn_committed)
return util::Error{
_(
"Error starting/committing db txn for wallet transactions removal process")};
2241 std::vector<
decltype(mapWallet)::const_iterator> erased_txs;
2243 for (
const Txid& hash : txs_to_remove) {
2244 auto it_wtx = mapWallet.find(hash);
2245 if (it_wtx == mapWallet.end()) {
2251 erased_txs.emplace_back(it_wtx);
2257 for (
const auto& it : erased_txs) {
2258 const Txid hash{it->first};
2259 wtxOrdered.erase(it->second.m_it_wtxOrdered);
2260 for (
const auto& txin : it->second.GetTx()->vin) {
2261 auto range = mapTxSpends.equal_range(txin.prevout);
2262 for (
auto iter = range.first; iter != range.second; ++iter) {
2263 if (iter->second == hash) {
2264 mapTxSpends.erase(iter);
2269 for (
unsigned int i = 0; i < it->second.GetTx()->vout.size(); ++i) {
2272 mapWallet.erase(it);
2284 bool fUpdated =
false;
2286 std::optional<AddressPurpose> purpose;
2289 std::map<CTxDestination, CAddressBookData>::iterator mi = m_address_book.find(address);
2290 fUpdated = mi != m_address_book.end() && !mi->second.IsChange();
2292 CAddressBookData& record = mi != m_address_book.end() ? mi->second : m_address_book[address];
2294 is_mine =
IsMine(address);
2303 WalletLogPrintf(
"Error: fail to write address book 'purpose' entry\n");
2306 if (!batch.
WriteName(encoded_dest, strName)) {
2340 WalletLogPrintf(
"%s called with IsMine address, NOT SUPPORTED. Please report this bug! %s\n", __func__, CLIENT_BUGREPORT);
2362 m_address_book.erase(address);
2374 unsigned int count = 0;
2376 count += spk_man.second->GetKeyPoolSize();
2386 unsigned int count = 0;
2388 count += spk_man->GetKeyPoolSize();
2398 res &= spk_man->TopUp(kpSize);
2411 auto op_dest = spk_man->GetNewDestination(type);
2431 for (
auto& entry : mapWallet) {
2434 for (
unsigned int i = 0; i < wtx.
GetTx()->vout.size(); i++) {
2447 for (
const std::pair<const CTxDestination, CAddressBookData>& item : m_address_book) {
2448 const auto& entry = item.second;
2449 func(item.first, entry.GetLabel(), entry.IsChange(), entry.purpose);
2456 std::vector<CTxDestination> result;
2464 result.emplace_back(dest);
2472 std::set<std::string> label_set;
2474 bool _is_change,
const std::optional<AddressPurpose>& _purpose) {
2475 if (_is_change)
return;
2476 if (!purpose || purpose == _purpose) {
2477 label_set.insert(_label);
2493 if (!op_address)
return op_address;
2523 if (signer_spk_man ==
nullptr) {
2528 return signer_spk_man->DisplayAddress(dest, *
signer);
2530 return util::Error{
_(
"There is no ScriptPubKeyManager for this address")};
2536 m_locked_coins.emplace(coin, persistent);
2553 auto locked_coin_it = m_locked_coins.find(output);
2554 if (locked_coin_it != m_locked_coins.end()) {
2555 bool persisted = locked_coin_it->second;
2556 m_locked_coins.erase(locked_coin_it);
2568 bool success =
true;
2570 for (
const auto& [coin, persistent] : m_locked_coins) {
2573 m_locked_coins.clear();
2580 return m_locked_coins.contains(output);
2586 for (
const auto& [coin,
_] : m_locked_coins) {
2587 vOutpts.push_back(coin);
2616 std::optional<uint256> block_hash;
2618 block_hash = conf->confirmed_block_hash;
2620 block_hash = conf->conflicting_block_hash;
2626 int64_t block_max_time;
2627 if (
chain().findBlock(*block_hash,
FoundBlock().time(blocktime).maxTime(block_max_time))) {
2628 if (rescanning_old_block) {
2629 nTimeSmart = block_max_time;
2632 int64_t latestEntry = 0;
2635 int64_t latestTolerated = latestNow + 300;
2637 for (
auto it = txOrdered.rbegin(); it != txOrdered.rend(); ++it) {
2647 if (nSmartTime <= latestTolerated) {
2648 latestEntry = nSmartTime;
2649 if (nSmartTime > latestNow) {
2650 latestNow = nSmartTime;
2656 nTimeSmart = std::max(latestEntry, std::min(blocktime, latestNow));
2667 if (std::get_if<CNoDestination>(&dest))
2681 m_address_book[dest].previously_spent =
true;
2686 m_address_book[dest].receive_requests[id] = request;
2697 std::vector<std::string>
values;
2698 for (
const auto& [dest, entry] : m_address_book) {
2699 for (
const auto& [
id, request] : entry.receive_requests) {
2700 values.emplace_back(request);
2709 m_address_book[dest].receive_requests[id] = value;
2716 m_address_book[dest].receive_requests.erase(
id);
2725 if (name_path != name_path.lexically_normal()) {
2731 return util::Error{
Untranslated(
"Wallet name given as a relative path cannot begin with ./ or ../, for wallets not in the walletdir, please use an absolute path.")};
2735 if (name_path.has_root_path() && name_path.root_path() == name_path) {
2746 fs::file_type path_type = fs::symlink_status(wallet_path).type();
2747 if (!(path_type == fs::file_type::not_found || path_type == fs::file_type::directory ||
2748 (path_type == fs::file_type::symlink && fs::is_directory(wallet_path)) ||
2749 (path_type == fs::file_type::regular && name_path.filename() == name_path))) {
2751 "Invalid -wallet path '%s'. -wallet path should point to a directory where wallet.dat and "
2752 "database/log.?????????? files can be stored, a location where such a directory could be created, "
2753 "or (for backwards compatibility) the name of an existing data file in -walletdir (%s)",
2767 return MakeDatabase(*wallet_path, options, status, error_string);
2775 if (!
args.
GetArg(
"-addresstype",
"").empty()) {
2781 wallet->m_default_address_type = parsed.value();
2784 if (!
args.
GetArg(
"-changetype",
"").empty()) {
2790 wallet->m_default_change_type = parsed.value();
2793 if (
const auto arg{
args.
GetArg(
"-mintxfee")}) {
2794 std::optional<CAmount> min_tx_fee =
ParseMoney(*arg);
2800 _(
"This is the minimum transaction fee you pay on every transaction."));
2806 if (
const auto arg{
args.
GetArg(
"-maxapsfee")}) {
2807 const std::string& max_aps_fee{*arg};
2808 if (max_aps_fee ==
"-1") {
2809 wallet->m_max_aps_fee = -1;
2810 }
else if (std::optional<CAmount> max_fee =
ParseMoney(max_aps_fee)) {
2813 _(
"This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection."));
2815 wallet->m_max_aps_fee = max_fee.value();
2822 if (
const auto arg{
args.
GetArg(
"-fallbackfee")}) {
2823 std::optional<CAmount> fallback_fee =
ParseMoney(*arg);
2824 if (!fallback_fee) {
2825 error =
strprintf(
_(
"Invalid amount for %s=<amount>: '%s'"),
"-fallbackfee", *arg);
2829 _(
"This is the transaction fee you may pay when fee estimates are not available."));
2835 wallet->m_allow_fallback_fee =
wallet->m_fallback_fee.GetFeePerK() != 0;
2837 if (
const auto arg{
args.
GetArg(
"-discardfee")}) {
2838 std::optional<CAmount> discard_fee =
ParseMoney(*arg);
2840 error =
strprintf(
_(
"Invalid amount for %s=<amount>: '%s'"),
"-discardfee", *arg);
2844 _(
"This is the transaction fee you may discard if change is smaller than dust at this level"));
2849 if (
const auto arg{
args.
GetArg(
"-maxtxfee")}) {
2850 std::optional<CAmount> max_fee =
ParseMoney(*arg);
2855 warnings.push_back(
strprintf(
_(
"%s is set very high! Fees this large could be paid on a single transaction."),
"-maxtxfee"));
2859 error =
strprintf(
_(
"Invalid amount for %s=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)"),
2864 wallet->m_default_max_tx_fee = max_fee.value();
2867 if (
const auto arg{
args.
GetArg(
"-consolidatefeerate")}) {
2868 if (std::optional<CAmount> consolidate_feerate =
ParseMoney(*arg)) {
2878 _(
"The wallet will avoid paying less than the minimum relay fee."));
2885 warnings.push_back(
_(
"-walletrbf is deprecated and will be fully removed in the next release."));
2886 wallet->m_signal_rbf = *value;
2899 const std::string& walletFile = database->Filename();
2901 const auto start{SteadyClock::now()};
2912 error =
strprintf(
_(
"Error creating %s: Could not write version metadata."), walletFile);
2916 LOCK(walletInstance->cs_wallet);
2926 if (!born_encrypted) {
2927 walletInstance->SetupWalletGeneration();
2933 walletInstance->SetLastBlockProcessed(*tip_height,
chain->
getBlockHash(*tip_height));
2938 walletInstance->WalletLogPrintf(
"Wallet completed creation in %15dms\n", Ticks<std::chrono::milliseconds>(SteadyClock::now() - start));
2941 walletInstance->TopUpKeyPool();
2944 walletInstance->DisconnectChainNotifications();
2948 return walletInstance;
2954 const std::string& walletFile = database->Filename();
2956 const auto start{SteadyClock::now()};
2964 auto nLoadWalletRet = walletInstance->PopulateWalletFromDB(error, warnings);
2971 for (
auto spk_man : walletInstance->GetActiveScriptPubKeyMans()) {
2972 if (spk_man->HavePrivateKeys()) {
2973 warnings.push_back(
strprintf(
_(
"Warning: Private keys detected in wallet {%s} with disabled private keys"), walletFile));
2979 walletInstance->WalletLogPrintf(
"Wallet completed loading in %15dms\n", Ticks<std::chrono::milliseconds>(SteadyClock::now() - start));
2982 walletInstance->TopUpKeyPool();
2985 walletInstance->DisconnectChainNotifications();
2989 WITH_LOCK(walletInstance->cs_wallet, walletInstance->LogStats());
2991 return walletInstance;
2997 LOCK(walletInstance->cs_wallet);
2999 assert(!walletInstance->m_chain || walletInstance->m_chain == &
chain);
3000 walletInstance->m_chain = &
chain;
3010 error =
Untranslated(
"Wallet files should not be reused across chains. Restart bitcoind with -walletcrosschain to override.");
3022 walletInstance->m_chain_notifications_handler = walletInstance->chain().handleNotifications(walletInstance);
3025 int rescan_height = 0;
3026 if (!rescan_required)
3032 rescan_height = *fork_height;
3039 walletInstance->SetLastBlockProcessedInMem(*tip_height,
chain.
getBlockHash(*tip_height));
3041 walletInstance->SetLastBlockProcessedInMem(-1,
uint256());
3044 if (tip_height && *tip_height != rescan_height)
3048 std::optional<int64_t> time_first_key = walletInstance->m_birth_time.load();
3049 if (time_first_key) {
3056 rescan_height = *tip_height;
3064 int block_height = *tip_height;
3065 while (block_height > 0 &&
chain.
haveBlockOnDisk(block_height - 1) && rescan_height != block_height) {
3069 if (rescan_height != block_height) {
3080 _(
"Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of a pruned node)") :
3082 "Error loading wallet. Wallet requires blocks to be downloaded, "
3083 "and software does not currently support loading wallets while "
3084 "blocks are being downloaded out of order when using assumeutxo "
3085 "snapshots. Wallet should be able to load successfully after "
3086 "node sync reaches height %s"), block_height);
3092 walletInstance->WalletLogPrintf(
"Rescanning last %i blocks (from block %i)...\n", *tip_height - rescan_height, rescan_height);
3097 error =
_(
"Failed to acquire rescan reserver during wallet initialization");
3102 error =
_(
"Failed to rescan the wallet during initialization");
3117 const auto& address_book_it = m_address_book.find(dest);
3118 if (address_book_it == m_address_book.end())
return nullptr;
3119 if ((!allow_change) && address_book_it->second.IsChange()) {
3122 return &address_book_it->second;
3145 assert(conf->confirmed_block_height >= 0);
3148 assert(conf->conflicting_block_height >= 0);
3163 assert(chain_depth >= 0);
3181 return vMasterKey.empty();
3191 if (!vMasterKey.empty()) {
3192 memory_cleanse(vMasterKey.data(), vMasterKey.size() *
sizeof(
decltype(vMasterKey)::value_type));
3206 if (!spk_man_pair.second->CheckDecryptionKey(vMasterKeyIn)) {
3210 vMasterKey = vMasterKeyIn;
3218 std::set<ScriptPubKeyMan*> spk_mans;
3219 for (
bool internal : {
false,
true}) {
3223 spk_mans.insert(spk_man);
3233 if (ext_spkm == &spkm)
return true;
3236 if (int_spkm == &spkm)
return true;
3243 std::set<ScriptPubKeyMan*> spk_mans;
3245 spk_mans.insert(spk_man_pair.second.get());
3253 std::map<OutputType, ScriptPubKeyMan*>::const_iterator it = spk_managers.find(type);
3254 if (it == spk_managers.end()) {
3262 std::set<ScriptPubKeyMan*> spk_mans;
3267 spk_mans.insert(it->second.begin(), it->second.end());
3270 Assume(std::all_of(spk_mans.begin(), spk_mans.end(), [&
script, &sigdata](
ScriptPubKeyMan* spkm) { return spkm->CanProvide(script, sigdata); }));
3296 return it->second.at(0)->GetSolvingProvider(
script);
3304 std::vector<WalletDescriptor> descs;
3307 LOCK(desc_spk_man->cs_desc_man);
3308 descs.push_back(desc_spk_man->GetWalletDescriptor());
3347 std::unique_ptr<ScriptPubKeyMan> spk_manager = std::make_unique<LegacyDataSPKM>(*
this);
3353 uint256 id = spk_manager->GetID();
3360 return cb(vMasterKey);
3371 if (spkm->HaveCryptedKeys())
return true;
3379 spk_man->NotifyCanGetAddressesChanged.connect([
this] {
3382 spk_man->NotifyFirstKeyTimeChanged.connect([
this](
const ScriptPubKeyMan*, int64_t time) {
3390 std::unique_ptr<DescriptorScriptPubKeyMan> spk_manager;
3403 throw std::runtime_error(std::string(__func__) +
": Wallet is locked, cannot setup new descriptors");
3407 uint256 id = spk_manager->GetID();
3416 for (
bool internal : {
false,
true}) {
3447 }))
throw std::runtime_error(
"Error: cannot process db transaction for descriptors setup");
3456 if (!signer_res.
isObject())
throw std::runtime_error(std::string(__func__) +
": Unexpected result");
3459 if (!batch.
TxnBegin())
throw std::runtime_error(
"Error: cannot create db transaction for descriptors import");
3461 for (
bool internal : {
false,
true}) {
3462 const UniValue& descriptor_vals = signer_res.
find_value(internal ?
"internal" :
"receive");
3463 if (!descriptor_vals.
isArray())
throw std::runtime_error(std::string(__func__) +
": Unexpected result");
3465 const std::string& desc_str = desc_val.getValStr();
3467 std::string desc_error;
3468 auto descs =
Parse(desc_str,
keys, desc_error,
false);
3469 if (descs.empty()) {
3470 throw std::runtime_error(std::string(__func__) +
": Invalid descriptor \"" + desc_str +
"\" (" + desc_error +
")");
3472 auto& desc = descs.at(0);
3473 if (!desc->GetOutputType()) {
3478 uint256 id = spk_manager->GetID();
3485 if (!batch.
TxnCommit())
throw std::runtime_error(
"Error: cannot commit db transaction for descriptors import");
3510 throw std::runtime_error(std::string(__func__) +
": writing active ScriptPubKeyMan id failed");
3525 spk_mans[type] = spk_man;
3527 const auto it = spk_mans_other.find(type);
3528 if (it != spk_mans_other.end() && it->second == spk_man) {
3529 spk_mans_other.erase(type);
3538 if (spk_man !=
nullptr && spk_man->GetID() ==
id) {
3542 throw std::runtime_error(std::string(__func__) +
": erasing active ScriptPubKeyMan id failed");
3546 spk_mans.erase(type);
3555 DescriptorScriptPubKeyMan* spk_manager = dynamic_cast<DescriptorScriptPubKeyMan*>(item.second.get());
3556 return spk_manager != nullptr && spk_manager->HasWalletDescriptor(desc);
3570 return std::nullopt;
3574 if (!desc_spk_man) {
3575 throw std::runtime_error(std::string(__func__) +
": unexpected ScriptPubKeyMan type.");
3578 LOCK(desc_spk_man->cs_desc_man);
3579 const auto& type = desc_spk_man->GetWalletDescriptor().descriptor->GetOutputType();
3580 assert(type.has_value());
3594 if (
auto spkm_res = spk_man->UpdateWalletDescriptor(desc, signing_provider); !spkm_res) {
3599 spk_man = new_spk_man.get();
3602 uint256 id = new_spk_man->GetID();
3608 return util::Error{
_(
"Unable to write descriptor cache")};
3615 auto script_pub_keys = spk_man->GetScriptPubKeys();
3616 if (script_pub_keys.empty()) {
3617 return util::Error{
_(
"Could not generate scriptPubKeys (cache is empty)")};
3621 for (
const auto&
script : script_pub_keys) {
3631 spk_man->WriteDescriptor();
3636 return std::reference_wrapper(*spk_man);
3643 if (key && !key->key.IsValid()) {
3646 _(
"Invalid HD key"),
3653 _(
"addhdkey is not available for wallets without private keys")
3660 _(
"Wallet needs to be unlocked to perform this operation.")
3672 std::string desc_str =
"unused(" +
EncodeExtKey(hdkey) +
")";
3674 std::string parse_error;
3675 std::vector<std::unique_ptr<Descriptor>> descs =
Parse(desc_str,
keys, parse_error,
false);
3676 if (descs.empty()) {
3687 _(
"HD key already exists")
3701 std::set<CPubKey> pubkeys;
3702 std::set<CExtPubKey> extpubs;
3705 Assume(extpubs.size() == 1);
3707 return *extpubs.begin();
3714 WalletLogPrintf(
"Migrating wallet storage database from BerkeleyDB to SQLite.\n");
3717 error =
_(
"Error: This wallet already uses SQLite");
3722 std::unique_ptr<DatabaseBatch> batch =
m_database->MakeBatch();
3723 std::unique_ptr<DatabaseCursor> cursor = batch->GetNewCursor();
3724 std::vector<std::pair<SerializeData, SerializeData>> records;
3726 error =
_(
"Error: Unable to begin reading all records in the database");
3733 status = cursor->Next(ss_key, ss_value);
3739 records.emplace_back(key, value);
3744 error =
_(
"Error: Unable to read all records in the database");
3751 fs::remove(db_path);
3762 std::unique_ptr<WalletDatabase> new_db =
MakeDatabase(wallet_path, opts, db_status, error);
3769 bool began = batch->TxnBegin();
3771 for (
const auto& [key, value] : records) {
3772 if (!batch->Write(std::span{key}, std::span{value})) {
3779 bool committed = batch->TxnCommit();
3789 if (!
Assume(legacy_spkm)) {
3792 return std::nullopt;
3796 if (res == std::nullopt) {
3797 error =
_(
"Error: Unable to produce descriptors for this legacy wallet. Make sure to provide the wallet's passphrase if it is encrypted.");
3798 return std::nullopt;
3808 if (!
Assume(legacy_spkm)) {
3814 bool has_spendable_material = !
data.desc_spkms.empty() ||
data.master_key.key.IsValid();
3817 std::set<CTxDestination> not_migrated_dests;
3826 if (!
data.watch_descs.empty())
Assume(!
data.watchonly_wallet->m_cached_spks.empty());
3827 if (!
data.solvable_descs.empty())
Assume(!
data.solvable_wallet->m_cached_spks.empty());
3829 for (
auto& desc_spkm :
data.desc_spkms) {
3831 return util::Error{
_(
"Error: Duplicate descriptors created during migration. Your wallet may be corrupted.")};
3833 uint256 id = desc_spkm->GetID();
3839 return util::Error{
_(
"Error: cannot remove legacy wallet records")};
3851 if (
data.master_key.key.IsValid()) {
3870 std::vector<Txid> txids_to_delete;
3871 std::unique_ptr<WalletBatch> watchonly_batch;
3872 if (
data.watchonly_wallet) {
3873 watchonly_batch = std::make_unique<WalletBatch>(
data.watchonly_wallet->GetDatabase());
3874 if (!watchonly_batch->TxnBegin())
return util::Error{
strprintf(
_(
"Error: database transaction cannot be executed for wallet %s"),
data.watchonly_wallet->GetName())};
3876 LOCK(
data.watchonly_wallet->cs_wallet);
3877 data.watchonly_wallet->nOrderPosNext = nOrderPosNext;
3878 watchonly_batch->WriteOrderPosNext(
data.watchonly_wallet->nOrderPosNext);
3880 if (!watchonly_batch->WriteBestBlock(best_block_locator)) {
3881 return util::Error{
_(
"Error: Unable to write watchonly wallet best block locator record")};
3884 std::unique_ptr<WalletBatch> solvables_batch;
3885 if (
data.solvable_wallet) {
3886 solvables_batch = std::make_unique<WalletBatch>(
data.solvable_wallet->GetDatabase());
3887 if (!solvables_batch->TxnBegin())
return util::Error{
strprintf(
_(
"Error: database transaction cannot be executed for wallet %s"),
data.solvable_wallet->GetName())};
3889 if (!solvables_batch->WriteBestBlock(best_block_locator)) {
3890 return util::Error{
_(
"Error: Unable to write solvable wallet best block locator record")};
3897 if (
data.watchonly_wallet) {
3898 LOCK(
data.watchonly_wallet->cs_wallet);
3899 if (
data.watchonly_wallet->IsMine(*wtx->GetTx()) ||
data.watchonly_wallet->IsFromMe(*wtx->GetTx())) {
3901 const Txid& hash = wtx->GetHash();
3905 if (!
data.watchonly_wallet->LoadToWallet(std::move(copy_wtx))) {
3906 return util::Error{
strprintf(
_(
"Error: Could not add watchonly tx %s to watchonly wallet"), wtx->GetHash().GetHex())};
3908 watchonly_batch->WriteFullTx(
data.watchonly_wallet->mapWallet.at(hash));
3911 txids_to_delete.push_back(hash);
3918 return util::Error{
strprintf(
_(
"Error: Transaction %s in wallet cannot be identified to belong to migrated wallets"), wtx->GetHash().GetHex())};
3925 if (txids_to_delete.size() > 0) {
3926 if (
auto res =
RemoveTxs(local_wallet_batch, txids_to_delete); !res) {
3932 std::vector<std::pair<std::shared_ptr<CWallet>, std::unique_ptr<WalletBatch>>> wallets_vec;
3933 if (
data.watchonly_wallet) wallets_vec.emplace_back(
data.watchonly_wallet, std::move(watchonly_batch));
3934 if (
data.solvable_wallet) wallets_vec.emplace_back(
data.solvable_wallet, std::move(solvables_batch));
3940 if (entry.label) batch.
WriteName(address, *entry.label);
3941 for (
const auto& [
id, request] : entry.receive_requests) {
3948 std::vector<CTxDestination> dests_to_delete;
3949 for (
const auto& [dest, record] : m_address_book) {
3953 bool copied =
false;
3954 for (
auto& [
wallet, batch] : wallets_vec) {
3956 if (require_transfer && !
wallet->IsMine(dest))
continue;
3959 wallet->m_address_book[dest] = record;
3960 func_store_addr(*batch, dest, record);
3964 if (require_transfer) {
3965 dests_to_delete.push_back(dest);
3973 if (require_transfer && !copied) {
3976 if (not_migrated_dests.contains(dest)) {
3977 dests_to_delete.push_back(dest);
3981 return util::Error{
_(
"Error: Address book data in wallet cannot be identified to belong to migrated wallets")};
3986 for (
auto& [
wallet, batch] : wallets_vec) {
3993 if (dests_to_delete.size() > 0) {
3994 for (
const auto& dest : dests_to_delete) {
3996 return util::Error{
_(
"Error: Unable to remove watchonly address book data")};
4004 if (!has_spendable_material) {
4005 if (!m_address_book.empty())
return util::Error{
_(
"Error: Not all address book records were migrated")};
4006 if (!mapWallet.empty())
return util::Error{
_(
"Error: Not all transaction records were migrated")};
4023 return name.empty() ?
"default_wallet" :
name;
4031 std::optional<MigrationData>
data =
wallet.GetDescriptorsForLegacy(error);
4032 if (
data == std::nullopt)
return false;
4035 if (
data->watch_descs.size() > 0 ||
data->solvable_descs.size() > 0) {
4052 if (
data->watch_descs.size() > 0) {
4053 wallet.WalletLogPrintf(
"Making a new watchonly wallet containing the watched scripts\n");
4056 std::vector<bilingual_str> warnings;
4058 std::unique_ptr<WalletDatabase> database =
MakeWalletDatabase(wallet_name, options, status, error);
4060 error =
strprintf(
_(
"Wallet file creation failed: %s"), error);
4065 if (!
data->watchonly_wallet) {
4066 error =
_(
"Error: Failed to create new watchonly wallet");
4070 LOCK(
data->watchonly_wallet->cs_wallet);
4073 for (
const auto& [desc_str, creation_time] :
data->watch_descs) {
4076 std::string parse_err;
4077 std::vector<std::unique_ptr<Descriptor>> descs =
Parse(desc_str,
keys, parse_err,
true);
4079 assert(descs.size() == 1);
4080 assert(!descs.at(0)->IsRange());
4084 if (
auto spkm_res =
data->watchonly_wallet->AddWalletDescriptor(w_desc,
keys,
"",
false); !spkm_res) {
4092 if (
data->solvable_descs.size() > 0) {
4093 wallet.WalletLogPrintf(
"Making a new watchonly wallet containing the unwatched solvable scripts\n");
4096 std::vector<bilingual_str> warnings;
4098 std::unique_ptr<WalletDatabase> database =
MakeWalletDatabase(wallet_name, options, status, error);
4100 error =
strprintf(
_(
"Wallet file creation failed: %s"), error);
4105 if (!
data->solvable_wallet) {
4106 error =
_(
"Error: Failed to create new watchonly wallet");
4110 LOCK(
data->solvable_wallet->cs_wallet);
4113 for (
const auto& [desc_str, creation_time] :
data->solvable_descs) {
4116 std::string parse_err;
4117 std::vector<std::unique_ptr<Descriptor>> descs =
Parse(desc_str,
keys, parse_err,
true);
4119 assert(descs.size() == 1);
4120 assert(!descs.at(0)->IsRange());
4124 if (
auto spkm_res =
data->solvable_wallet->AddWalletDescriptor(w_desc,
keys,
"",
false); !spkm_res) {
4136 if (auto res_migration = wallet.ApplyMigrationData(batch, *data); !res_migration) {
4137 error = util::ErrorString(res_migration);
4140 wallet.WalletLogPrintf(
"Wallet migration complete.\n");
4147 std::vector<bilingual_str> warnings;
4153 return util::Error{
_(
"Error: This wallet is already a descriptor wallet")};
4164 return util::Error{
_(
"Error: This wallet is already a descriptor wallet")};
4176 std::unique_ptr<WalletDatabase> database =
MakeWalletDatabase(wallet_name, options, status, error);
4182 std::shared_ptr<CWallet> local_wallet = CWallet::LoadExisting(empty_context, wallet_name, std::move(database), error, warnings);
4183 if (!local_wallet) {
4194 std::vector<bilingual_str> warnings;
4200 const std::string wallet_name = local_wallet->GetName();
4204 return util::Error{
_(
"Error: This wallet is already a descriptor wallet")};
4213 const std::string backup_prefix = wallet_name.empty() ?
MigrationPrefixName(*local_wallet) : [&] {
4222 return util::Error{
_(
"Error: Unable to make a backup of your wallet")};
4226 bool success =
false;
4229 if (local_wallet->IsLocked() && !local_wallet->Unlock(passphrase)) {
4230 if (passphrase.find(
'\0') == std::string::npos) {
4231 return util::Error{
Untranslated(
"Error: Wallet decryption failed, the wallet passphrase was not provided or was incorrect.")};
4233 return util::Error{
Untranslated(
"Error: Wallet decryption failed, the wallet passphrase entered was incorrect. "
4234 "The passphrase contains a null character (ie - a zero byte). "
4235 "If this passphrase was set with a version of this software prior to 25.0, "
4236 "please try again with only the characters up to — but not including — "
4237 "the first null character.")};
4247 bool empty_local_wallet =
false;
4250 LOCK(local_wallet->cs_wallet);
4252 if (!local_wallet->MigrateToSQLite(error))
return util::Error{error};
4256 success =
DoMigration(*local_wallet, context, error, res, load_wallet);
4258 empty_local_wallet = local_wallet->GetAllScriptPubKeyMans().empty();
4270 std::set<fs::path> wallet_files_to_remove;
4271 std::set<fs::path> wallet_empty_dirs_to_remove;
4276 const auto files =
wallet.GetDatabase().Files();
4277 wallet_files_to_remove.insert(files.begin(), files.end());
4278 if (
wallet.GetName() != wallet_name) {
4291 if (empty_local_wallet) {
4293 std::vector<fs::path> paths_to_remove = local_wallet->GetDatabase().Files();
4294 local_wallet.reset();
4295 for (
const auto& path_to_remove : paths_to_remove) fs::remove(path_to_remove);
4299 LogInfo(
"Loading new wallets after migration...\n");
4306 bool main_wallet_set{
false};
4308 if (success && *wallet_ptr) {
4309 std::shared_ptr<CWallet>&
wallet = *wallet_ptr;
4311 track_for_cleanup(*
wallet);
4313 std::string wallet_name =
wallet->GetName();
4316 wallet =
LoadWallet(context, wallet_name, std::nullopt, options, status, error, warnings);
4318 LogError(
"Failed to load wallet '%s' after migration. Rolling back migration to preserve consistency. "
4319 "Error cause: %s\n", wallet_name, error.
original);
4326 if (!main_wallet_set) {
4329 main_wallet_set =
true;
4341 std::vector<std::shared_ptr<CWallet>> created_wallets;
4342 if (local_wallet) created_wallets.push_back(std::move(local_wallet));
4347 for (std::shared_ptr<CWallet>&
wallet : created_wallets) {
4348 track_for_cleanup(*
wallet);
4352 for (std::shared_ptr<CWallet>& w : created_wallets) {
4353 if (w->HaveChain()) {
4356 error +=
_(
"\nUnable to cleanup failed migration");
4362 assert(w.use_count() == 1);
4368 for (
const fs::path& file : wallet_files_to_remove) {
4373 for (
const fs::path& dir : wallet_empty_dirs_to_remove) {
4374 Assume(fs::is_empty(dir));
4381 const auto& ptr_wallet =
RestoreWallet(context, backup_path, wallet_name, std::nullopt, status, restore_error, warnings,
false,
true);
4382 if (!restore_error.
empty()) {
4383 error += restore_error +
_(
"\nUnable to restore backup of wallet.");
4396 for (
const auto&
script : spks) {
4397 m_cached_spks[
script].push_back(spkm);
4404 CacheNewScriptPubKeys(spks, spkm);
4414 for (
const auto& spkm : filter == HDKeyFilter::Active ? GetActiveScriptPubKeyMans() : GetAllScriptPubKeyMans()) {
4416 LOCK(desc_spkm->cs_desc_man);
4418 if (filter == HDKeyFilter::UnusedKey && w_desc.
descriptor->HasScripts())
continue;
4420 std::set<CPubKey> desc_pubkeys;
4421 std::set<CExtPubKey> desc_xpubs;
4422 w_desc.
descriptor->GetPubKeys(desc_pubkeys, desc_xpubs);
4424 xpubs[xpub].insert(desc_spkm);
4430std::optional<CKey> CWallet::GetKey(
const CKeyID& keyid)
const
4434 for (
const auto& spkm : GetAllScriptPubKeyMans()) {
4438 if (std::optional<CKey> key = desc_spkm->
GetKey(keyid)) {
4442 return std::nullopt;
4445std::optional<CExtKey> CWallet::GetExtKey(
const CExtPubKey& xpub)
const
4447 if (std::optional<CKey> key = GetKey(xpub.
pubkey.
GetID())) {
4450 return std::nullopt;
4453void CWallet::WriteBestBlock()
const
4457 if (!m_last_block_processed.IsNull()) {
4459 chain().findBlock(m_last_block_processed,
FoundBlock().locator(loc));
4471 for (uint32_t i = 0; i < wtx.
GetTx()->vout.size(); ++i) {
4473 if (!IsMine(txout))
continue;
4475 if (m_txos.contains(outpoint)) {
4477 m_txos.emplace(outpoint,
WalletTXO{wtx, txout});
4482void CWallet::RefreshAllTXOs()
4485 for (
const auto& [
_, wtx] : mapWallet) {
4486 RefreshTXOsFromTx(wtx);
4490std::optional<WalletTXO> CWallet::GetTXO(
const COutPoint& outpoint)
const
4493 const auto& it = m_txos.find(outpoint);
4494 if (it == m_txos.end()) {
4495 return std::nullopt;
4500void CWallet::DisconnectChainNotifications()
4502 if (m_chain_notifications_handler) {
4503 m_chain_notifications_handler->disconnect();
4504 chain().waitForNotifications();
4505 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)
constexpr int64_t TIMESTAMP_WINDOW
Timestamp window used as a grace period by code that compares external timestamps (such as timestamps...
#define Assert(val)
Identity function.
#define STR_INTERNAL_BUG(msg)
#define Assume(val)
Assume is the identity function.
std::string GetArg(const std::string &strArg, const std::string &strDefault) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return string argument or default value.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
bool GetBoolArg(const std::string &strArg, bool fDefault) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
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.
bool VerifyPubKey(const CPubKey &vchPubKey) const
Verify thoroughly whether a private key and a public key match.
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.
CKeyID GetID() const
Get the KeyID of this public key (hash of its serialization)
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.
Different type to mark Mutex at global scope.
A version of CTransaction with the PSBT format.
std::vector< PSBTInput > inputs
Tp rand_uniform_delay(const Tp &time, typename Tp::duration range) noexcept
Return the time point advanced by a uniform random duration.
void push_back(UniValue val)
const UniValue & find_value(std::string_view key) const
const std::vector< UniValue > & getValues() const
const UniValue & get_array() const
bool empty() const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
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 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 & height(int &height)
std::string ToString() const
constexpr const std::byte * begin() const
std::string GetHex() const
The util::Expected class provides a standard way for low-level functions to return either error value...
The util::Unexpected class represents an unexpected value stored in util::Expected.
Encryption/decryption context with key information.
bool Decrypt(std::span< const unsigned char > ciphertext, CKeyingMaterial &plaintext) const
bool SetKeyFromPassphrase(const SecureString &key_data, std::span< const unsigned char > salt, unsigned int rounds, unsigned int derivation_method)
bool Encrypt(const CKeyingMaterial &vchPlaintext, std::vector< unsigned char > &vchCiphertext) const
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)
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.
btcsignals::signal< void()> NotifyUnload
Wallet is about to be unloaded.
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.
btcsignals::signal< void(const CTxDestination &address, const std::string &label, bool isMine, AddressPurpose purpose, ChangeType status)> NotifyAddressBookChanged
Address book entry changed.
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...
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.
LegacyDataSPKM * GetLegacyDataSPKM() const
Get the LegacyDataSPKM used for all legacy output types and both internal and external chains.
std::optional< common::PSBTError > FillPSBT(PartiallySignedTransaction &psbtx, const common::PSBTFillOptions &options, bool &complete, size_t *n_signed=nullptr) const
Fills out a PSBT with information from the wallet.
void SetupWalletGeneration() EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Setup new descriptors or seed for new address generation.
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.
btcsignals::signal< void(CWallet *wallet)> NotifyStatusChanged
Wallet status (encrypted, locked) changed.
std::unique_ptr< ChainScanner > m_scanner
btcsignals::signal< void()> NotifyCanGetAddressesChanged
Keypool has new keys.
std::map< OutputType, ScriptPubKeyMan * > m_external_spk_managers
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
std::map< OutputType, ScriptPubKeyMan * > m_internal_spk_managers
std::string m_name
Wallet name: relative directory name or "" for default wallet.
std::map< CExtPubKey, std::set< DescriptorScriptPubKeyMan * > > HDPubKeyMap
bool SetAddressPreviouslySpent(WalletBatch &batch, const CTxDestination &dest, bool used) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
void LoadDescriptorScriptPubKeyMan(uint256 id, WalletDescriptor &desc, const KeyMap &keys, const CryptedKeyMap &ckeys)
Instantiate a descriptor ScriptPubKeyMan from the WalletDescriptor and load it.
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
btcsignals::signal< void(const Txid &hashTx, ChangeType status)> NotifyTransactionChanged
Wallet transaction added, removed or updated.
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.
void CommitTransaction(CTransactionRef tx, std::optional< Txid > replaces_txid=std::nullopt, std::optional< std::string > comment=std::nullopt, std::optional< std::string > comment_to=std::nullopt, const std::vector< std::string > &messages={}, const std::vector< std::string > &payment_requests={})
Submit the transaction to the node's mempool and then relay to peers.
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)
void SetupLegacyDataSPKM()
Create a LegacyDataSPKM and set it for all legacy output types and both internal and external chains.
static std::shared_ptr< CWallet > CreateNew(WalletContext &context, const std::string &name, std::unique_ptr< WalletDatabase > database, uint64_t wallet_creation_flags, bool born_encrypted, bilingual_str &error, std::vector< bilingual_str > &warnings)
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 from MigrationData to this wallet, removes the LegacyDataSPKM,...
util::Expected< CExtPubKey, WalletError > AddHDKey(const std::optional< CExtKey > &key)
Add an HD key to the wallet and return its master xpub.
NodeClock::time_point m_next_resend
The next scheduled rebroadcast of wallet transactions.
HDKeyFilter
Which descriptors GetHDPubKeys() should consider.
WalletDatabase & GetDatabase() const override
bool EraseAddressReceiveRequest(WalletBatch &batch, const CTxDestination &dest, const std::string &id) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
bool SetAddressBookWithDB(WalletBatch &batch, const CTxDestination &address, const std::string &strName, const std::optional< AddressPurpose > &strPurpose)
void WriteBestBlock() const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Write the current best block to database.
bool DelAddressBookWithDB(WalletBatch &batch, const CTxDestination &address)
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
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)
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().
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.
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.
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 Update(CTransactionRef tx, const TxState &new_state, WalletBatch &batch, bool metadata_changed)
bool isBlockConflicted() const
std::vector< std::string > m_messages
const Txid & GetHash() const LIFETIMEBOUND
std::set< Txid > mempool_conflicts
std::optional< Txid > m_replaces_txid
void updateState(interfaces::Chain &chain)
Update transaction state when attaching to a chain, filling in heights of conflicted and confirmed bl...
std::optional< std::string > m_comment_to
int64_t nOrderPos
position in ordered transaction list
bool isUnconfirmed() const
std::optional< std::string > m_comment
unsigned int nTimeReceived
time received by this node
std::optional< Txid > m_replaced_by_txid
std::optional< Txid > truc_child_in_mempool
std::vector< std::string > m_payment_requests
int64_t GetTxTime() const
CTransactionRef GetTx() const
bool IsMalleation(const CWalletTx &tx) const
True if tx is a malleation of this, i.e.
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()
WalletDescriptor GetWalletDescriptor() const EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man)
std::optional< CKey > GetKey(const CKeyID &keyid) const EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man)
Retrieve the particular key if it is available. Returns nullopt if the key is not in the wallet,...
static std::unique_ptr< DescriptorScriptPubKeyMan > LoadFromStorage(WalletStorage &storage, const uint256 &id, WalletDescriptor &descriptor, int64_t keypool_size, const KeyMap &keys, const CryptedKeyMap &ckeys)
static std::unique_ptr< DescriptorScriptPubKeyMan > CreateFromImport(WalletStorage &storage, WalletDescriptor &descriptor, int64_t keypool_size, const FlatSigningProvider &provider)
RecursiveMutex cs_desc_man
static std::unique_ptr< DescriptorScriptPubKeyMan > GenerateNewSingleSig(WalletStorage &storage, WalletBatch &batch, int64_t keypool_size, const CExtKey &master_key, OutputType addr_type, bool internal)
static std::unique_ptr< ExternalSignerScriptPubKeyMan > CreateNew(WalletStorage &storage, WalletBatch &batch, int64_t keypool_size, std::unique_ptr< Descriptor > desc)
static std::unique_ptr< ExternalSignerScriptPubKeyMan > LoadFromStorage(WalletStorage &storage, const uint256 &id, WalletDescriptor &descriptor, int64_t keypool_size, const KeyMap &keys, const CryptedKeyMap &ckeys)
static util::Result< ExternalSigner > GetExternalSigner()
bool DeleteRecordsWithDB(WalletBatch &batch)
Delete the legacy wallet records from disk.
std::optional< MigrationData > MigrateToDescriptor()
Get the DescriptorScriptPubKeyMans (with private keys) that have the same scriptPubKeys as this Legac...
uint256 GetID() const override
std::unordered_set< CScript, SaltedSipHasher > GetNotMineScriptPubKeys() const
Retrieves scripts that were imported by bugs into the legacy spkm and are simply invalid,...
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 TxnAbort()
Abort current transaction.
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 WriteDescriptorCacheItems(const uint256 &desc_id, const DescriptorCache &cache)
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 WriteFullTx(const CWalletTx &wtx)
bool ErasePurpose(const std::string &strAddress)
bool EraseLockedUTXO(const COutPoint &output)
bool WriteTxMetadata(const CWalletTx &wtx)
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 to m_batch, indicating the last version of client software to load thi...
bool EraseActiveScriptPubKeyMan(uint8_t type, bool internal)
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.
const std::shared_ptr< const Descriptor > descriptor
RAII object to check and reserve a wallet rescan.
bool reserve(bool with_passphrase=false)
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.
constexpr int CLIENT_VERSION
static const PrecomputedData data
Precomputed COutPoint and CCoins values.
std::string ShellEscape(const std::string &arg)
constexpr 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 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 SyncMalleatedTxMetadata(WalletBatch &batch, const CWalletTx &wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
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...
bool AddToWalletIfInvolvingMe(const CTransactionRef &tx, const SyncTxState &state, bool rescanning_old_block) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Add a transaction to the wallet, or update it.
void MaybeUpdateBirthTime(int64_t time)
Updates wallet birth time if 'time' is below it.
void blockDisconnected(const interfaces::BlockInfo &block) override
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
SpendType HowSpent(const COutPoint &outpoint) const EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
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
bool LoadToWallet(CWalletTx &&wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
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.
bool SyncTransaction(const CTransactionRef &tx, const SyncTxState &state, bool rescanning_old_block=false) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
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 ...
void UnsetWalletFlag(uint64_t flag)
Unsets a single wallet flag.
std::set< CWalletTx *, WalletTxOrderComparator > GetMalleatedVariants(const CWalletTx &wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Collects all wallet txs that differ from wtx only in their scriptSigs (i.e.
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 IsFromMe(const CTransaction &tx) const
should probably be renamed to IsRelevantToMe
DBErrors ReorderTransactions()
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 EncodeExtKey(const CExtKey &key)
std::string EncodeDestination(const CTxDestination &dest)
std::thread thread
Thread variable should be after other struct members so the thread does not start until the other mem...
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.
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 LIFETIMEBOUND, std::string_view suffix)
void ReplaceAll(std::string &in_out, std::string_view search, std::string_view substitute)
Replace every non-overlapping occurrence of search with substitute, treating both literally; the repl...
std::string ToString(const T &t)
Locale-independent version of std::to_string.
constexpr bool DEFAULT_WALLET_RBF
-walletrbf default
constexpr bool DEFAULT_WALLETCROSSCHAIN
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)
static std::set< std::string > g_loading_wallet_set GUARDED_BY(g_loading_wallet_mutex)
constexpr unsigned int DEFAULT_KEYPOOL_SIZE
Default for -keypool.
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::variant< TxStateConfirmed, TxStateInMempool, TxStateInactive > SyncTxState
Subset of states transaction sync logic is implemented to handle.
std::function< void(std::unique_ptr< interfaces::Wallet > wallet)> LoadWalletFn
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::variant< TxStateConfirmed, TxStateInMempool, TxStateBlockConflicted, TxStateInactive, TxStateUnrecognized > TxState
All possible CWalletTx states.
util::Result< MigrationResult > MigrateLegacyToDescriptor(std::shared_ptr< CWallet > local_wallet, const SecureString &passphrase, WalletContext &context, bool load_wallet)
Requirement: The wallet provided to this function must be isolated, with no attachment to the node's ...
std::vector< unsigned char, secure_allocator< unsigned char > > CKeyingMaterial
std::map< CKeyID, std::pair< CPubKey, std::vector< unsigned char > > > CryptedKeyMap
DBErrors
Overview of wallet database classes:
@ UNEXPECTED_LEGACY_ENTRY
@ EXTERNAL_SIGNER_SUPPORT_REQUIRED
bool AddWalletSetting(interfaces::Chain &chain, const std::string &wallet_name)
Add wallet name to persistent configuration so it will be loaded on startup.
@ UnlockNeeded
The wallet is locked and the operation requires access to private keys.
@ GenericError
Generic wallet error.
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.
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...
std::unique_ptr< interfaces::Handler > HandleLoadWallet(WalletContext &context, LoadWalletFn load_wallet)
bool RemoveWallet(WalletContext &context, const std::shared_ptr< CWallet > &wallet, std::optional< bool > load_on_start)
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.
const std::unordered_set< OutputType > LEGACY_OUTPUT_TYPES
Output types associated with LegacyDataSPKM.
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)
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)
bool AddWallet(WalletContext &context, const std::shared_ptr< CWallet > &wallet)
constexpr uint64_t KNOWN_WALLET_FLAGS
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
bool DoMigration(CWallet &wallet, WalletContext &context, bilingual_str &error, MigrationResult &res, const bool load_on_startup=true) EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet)
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_EXTERNAL_SIGNER
Indicates that the wallet needs an external signer.
@ 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::map< CKeyID, CKey > KeyMap
std::shared_ptr< CWallet > GetWallet(WalletContext &context, const std::string &name)
util::Result< fs::path > GetWalletPath(const std::string &name)
Determine the path that the wallet is stored in.
constexpr unsigned int WALLET_CRYPTO_KEY_SIZE
constexpr bool DEFAULT_WALLETBROADCAST
constexpr unsigned int WALLET_CRYPTO_SALT_SIZE
@ 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)
constexpr bool DEFAULT_SPEND_ZEROCONF_CHANGE
Default for -spendzeroconfchange.
constexpr unsigned int DEFAULT_TX_CONFIRM_TARGET
-txconfirmtarget default
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)
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.
std::optional< PrecomputedTransactionData > PrecomputePSBTData(const PartiallySignedTransaction &psbt)
Compute a PrecomputedTransactionData object from a psbt.
bool PSBTInputSigned(const PSBTInput &input)
Checks whether a PSBTInput is already signed by checking for non-null finalized fields.
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
constexpr deserialize_type deserialize
@ 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
Instructions for how a PSBT should be signed or filled with information.
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,...
std::optional< AddressPurpose > purpose
Address purpose which was originally recorded for payment protocol support but now serves as a cached...
void SetLabel(std::string name)
std::optional< std::string > m_op_label
SecureString create_passphrase
std::optional< DatabaseFormat > require_format
struct containing information needed for migrating legacy wallets to descriptor wallets
std::optional< std::string > solvables_wallet_name
std::optional< std::string > watchonly_wallet_name
std::shared_ptr< CWallet > watchonly_wallet
std::shared_ptr< CWallet > solvables_wallet
std::shared_ptr< CWallet > wallet
uint256 last_scanned_block
Hash and height of most recent block that was successfully scanned.
enum wallet::ScanResult::@19 status
std::optional< int > last_scanned_height
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
Wallet-layer error with both programmatic and user-facing information.
#define WAIT_LOCK(cs, name)
#define AssertLockNotHeld(cs)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
std::vector< uint16_t > keys
#define EXCLUSIVE_LOCKS_REQUIRED(...)
consteval auto _(util::TranslatedLiteral str)
bilingual_str Untranslated(std::string original)
Mark a bilingual_str as untranslated.
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
is a home for public enum and struct type definitions that are used by internally by wallet code,...
std::vector< std::byte, zero_after_free_allocator< std::byte > > SerializeData
Byte-vector that clears its contents before deletion.