17 if (prev && txin.
prevout.
n < prev->
tx->vout.size()) {
35 throw std::runtime_error(std::string(__func__) +
": value out of range");
47 throw std::runtime_error(std::string(__func__) +
": value out of range");
67 if (!
wallet.FindAddressBookEntry(address)) {
83 throw std::runtime_error(std::string(__func__) +
": value out of range");
95 throw std::runtime_error(std::string(__func__) +
": value out of range");
103 if (!amount.IsCached(avoid_reuse)) {
107 return amount.Get(avoid_reuse);
115 if (
wallet.IsTxImmatureCoinBase(wtx))
124 if (wtx.
tx->vin.empty())
140 std::list<COutputEntry>& listReceived,
141 std::list<COutputEntry>& listSent,
CAmount& nFee,
145 listReceived.clear();
152 CAmount nValueOut = wtx.
tx->GetValueOut();
153 nFee = nDebit - nValueOut;
158 for (
unsigned int i = 0; i < wtx.
tx->vout.size(); ++i)
160 const CTxOut& txout = wtx.
tx->vout[i];
161 bool ismine =
wallet.IsMine(txout);
178 wallet.WalletLogPrintf(
"CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n",
187 listSent.push_back(output);
191 listReceived.push_back(output);
210 if (trusted_parents.contains(wtx.
GetHash()))
return true;
221 for (
const CTxIn& txin : wtx.
tx->vin)
225 if (parent ==
nullptr)
return false;
228 if (!
wallet.IsMine(parentOut))
return false;
230 if (trusted_parents.contains(parent->
GetHash()))
continue;
233 trusted_parents.insert(parent->
GetHash());
240 std::set<Txid> trusted_parents;
251 std::set<Txid> trusted_parents;
252 for (
const auto& [outpoint, txo] :
wallet.GetTXOs()) {
253 const CWalletTx& wtx = txo.GetWalletTx();
256 const int tx_depth{
wallet.GetTxDepthInMainChain(wtx)};
258 bool nonmempool_spent =
false;
259 switch (
wallet.HowSpent(outpoint)) {
265 if (!include_nonmempool)
break;
266 nonmempool_spent =
true;
273 bucket = &
ret.m_mine_immature;
274 }
else if (is_trusted && tx_depth >= min_depth) {
275 bucket = &
ret.m_mine_trusted;
276 }
else if (!is_trusted && wtx.
InMempool()) {
277 bucket = &
ret.m_mine_untrusted_pending;
281 CAmount credit_mine = txo.GetTxOut().nValue;
283 if (!allow_used_addresses &&
wallet.IsSpentKey(txo.GetTxOut().scriptPubKey)) {
284 bucket = &
ret.m_mine_used;
286 *bucket += credit_mine;
287 if (nonmempool_spent) {
288 ret.m_mine_nonmempool -= credit_mine;
299 std::map<CTxDestination, CAmount> balances;
303 std::set<Txid> trusted_parents;
304 for (
const auto& [outpoint, txo] :
wallet.GetTXOs()) {
305 const CWalletTx& wtx = txo.GetWalletTx();
308 if (
wallet.IsTxImmatureCoinBase(wtx))
continue;
310 int nDepth =
wallet.GetTxDepthInMainChain(wtx);
317 CAmount n =
wallet.IsSpent(outpoint) ? 0 : txo.GetTxOut().nValue;
328 std::set< std::set<CTxDestination> > groupings;
329 std::set<CTxDestination> grouping;
331 for (
const auto& walletEntry :
wallet.mapWallet)
333 const CWalletTx& wtx = walletEntry.second;
335 if (wtx.
tx->vin.size() > 0)
337 bool any_mine =
false;
339 for (
const CTxIn& txin : wtx.
tx->vin)
346 grouping.insert(address);
353 for (
const CTxOut& txout : wtx.
tx->vout)
359 grouping.insert(txoutAddr);
362 if (grouping.size() > 0)
364 groupings.insert(grouping);
370 for (
const auto& txout : wtx.
tx->vout)
376 grouping.insert(address);
377 groupings.insert(grouping);
382 std::set< std::set<CTxDestination>* > uniqueGroupings;
383 std::map< CTxDestination, std::set<CTxDestination>* > setmap;
384 for (
const std::set<CTxDestination>& _grouping : groupings)
387 std::set< std::set<CTxDestination>* > hits;
388 std::map< CTxDestination, std::set<CTxDestination>* >::iterator it;
390 if ((it = setmap.find(address)) != setmap.end())
391 hits.insert((*it).second);
394 std::set<CTxDestination>* merged =
new std::set<CTxDestination>(_grouping);
395 for (std::set<CTxDestination>* hit : hits)
397 merged->insert(hit->begin(), hit->end());
398 uniqueGroupings.erase(hit);
401 uniqueGroupings.insert(merged);
405 setmap[element] = merged;
408 std::set< std::set<CTxDestination> >
ret;
409 for (
const std::set<CTxDestination>* uniqueGrouping : uniqueGroupings)
411 ret.insert(*uniqueGrouping);
412 delete uniqueGrouping;
bool ExtractDestination(const CScript &scriptPubKey, CTxDestination &addressRet)
Parse a scriptPubKey for the destination.
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)
#define Assume(val)
Assume is the identity function.
Serialized script, used inside transaction inputs and outputs.
bool IsUnspendable() const
Returns whether the script is guaranteed to fail at execution, regardless of the initial stack.
The basic transaction that is broadcasted on the network and contained in blocks.
const std::vector< CTxOut > vout
const std::vector< CTxIn > vin
An input of a transaction.
An output of a transaction.
std::string ToString() const
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
A transaction with a bunch of additional info that only the owner cares about.
bool isBlockConflicted() const
const Txid & GetHash() const LIFETIMEBOUND
std::optional< bool > m_cached_from_me
CachableAmount m_amounts[AMOUNTTYPE_ENUM_ELEMENTS]
bool m_is_cache_empty
This flag is true if all m_amounts caches are empty.
bool OutputIsChange(const CWallet &wallet, const CTxOut &txout)
bool AllInputsMine(const CWallet &wallet, const CTransaction &tx)
Returns whether all of the inputs belong to the wallet.
bool CachedTxIsFromMe(const CWallet &wallet, const CWalletTx &wtx)
CAmount TxGetChange(const CWallet &wallet, const CTransaction &tx)
bool CachedTxIsTrusted(const CWallet &wallet, const CWalletTx &wtx, std::set< Txid > &trusted_parents)
bool ScriptIsChange(const CWallet &wallet, const CScript &script)
CAmount TxGetCredit(const CWallet &wallet, const CTransaction &tx)
static CAmount GetCachableAmount(const CWallet &wallet, const CWalletTx &wtx, CWalletTx::AmountType type, bool avoid_reuse)
CAmount OutputGetChange(const CWallet &wallet, const CTxOut &txout)
CAmount CachedTxGetDebit(const CWallet &wallet, const CWalletTx &wtx, bool avoid_reuse)
CAmount CachedTxGetChange(const CWallet &wallet, const CWalletTx &wtx)
CAmount CachedTxGetCredit(const CWallet &wallet, const CWalletTx &wtx, bool avoid_reuse)
void CachedTxGetAmounts(const CWallet &wallet, const CWalletTx &wtx, std::list< COutputEntry > &listReceived, std::list< COutputEntry > &listSent, CAmount &nFee, bool include_change)
Balance GetBalance(const CWallet &wallet, const int min_depth, bool avoid_reuse, bool include_nonmempool)
std::map< CTxDestination, CAmount > GetAddressBalances(const CWallet &wallet)
@ WALLET_FLAG_AVOID_REUSE
bool InputIsMine(const CWallet &wallet, const CTxIn &txin)
CAmount OutputGetCredit(const CWallet &wallet, const CTxOut &txout)
std::set< std::set< CTxDestination > > GetAddressGroupings(const CWallet &wallet)
void Set(bool avoid_reuse, CAmount value)