| 137 | } |
| 138 | |
| 139 | void CachedTxGetAmounts(const CWallet& wallet, const CWalletTx& wtx, |
| 140 | std::list<COutputEntry>& listReceived, |
| 141 | std::list<COutputEntry>& listSent, CAmount& nFee, |
| 142 | bool include_change) |
| 143 | { |
| 144 | nFee = 0; |
| 145 | listReceived.clear(); |
| 146 | listSent.clear(); |
| 147 | |
| 148 | // Compute fee: |
| 149 | CAmount nDebit = CachedTxGetDebit(wallet, wtx, /*avoid_reuse=*/false); |
| 150 | if (nDebit > 0) // debit>0 means we signed/sent this transaction |
| 151 | { |
| 152 | CAmount nValueOut = wtx.tx->GetValueOut(); |
| 153 | nFee = nDebit - nValueOut; |
| 154 | } |
| 155 | |
| 156 | LOCK(wallet.cs_wallet); |
| 157 | // Sent/received. |
| 158 | for (unsigned int i = 0; i < wtx.tx->vout.size(); ++i) |
| 159 | { |
| 160 | const CTxOut& txout = wtx.tx->vout[i]; |
| 161 | bool ismine = wallet.IsMine(txout); |
| 162 | // Only need to handle txouts if AT LEAST one of these is true: |
| 163 | // 1) they debit from us (sent) |
| 164 | // 2) the output is to us (received) |
| 165 | if (nDebit > 0) |
| 166 | { |
| 167 | if (!include_change && OutputIsChange(wallet, txout)) |
| 168 | continue; |
| 169 | } |
| 170 | else if (!ismine) |
| 171 | continue; |
| 172 | |
| 173 | // In either case, we need to get the destination address |
| 174 | CTxDestination address; |
| 175 | |
| 176 | if (!ExtractDestination(txout.scriptPubKey, address) && !txout.scriptPubKey.IsUnspendable()) |
| 177 | { |
| 178 | wallet.WalletLogPrintf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n", |
| 179 | wtx.GetHash().ToString()); |
| 180 | address = CNoDestination(); |
| 181 | } |
| 182 | |
| 183 | COutputEntry output = {address, txout.nValue, (int)i}; |
| 184 | |
| 185 | // If we are debited by the transaction, add the output as a "sent" entry |
| 186 | if (nDebit > 0) |
| 187 | listSent.push_back(output); |
| 188 | |
| 189 | // If we are receiving the output, add it as a "received" entry |
| 190 | if (ismine) |
| 191 | listReceived.push_back(output); |
| 192 | } |
| 193 | |
| 194 | } |
| 195 | |
| 196 | bool CachedTxIsFromMe(const CWallet& wallet, const CWalletTx& wtx) |
no test coverage detected