mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
11d59e785d
446e261
[qt] Fix potential memory leak in newPossibleKey(ChangeCWallet *wallet) (practicalswift)
Pull request description:
Fix potential memory leak in `newPossibleKey(ChangeCWallet *wallet)`.
Tree-SHA512: 252d3828133a0d241cc649aed1280e14a5d5ea47b7b2989039cfa5061a8e35183c7f36d7320aa0ac1b4dcab31e584b358dbbb2fe645a412371d0a460878e2b58
105 lines
3.1 KiB
C++
105 lines
3.1 KiB
C++
// Copyright (c) 2011-2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "walletmodeltransaction.h"
|
|
|
|
#include "wallet/wallet.h"
|
|
|
|
WalletModelTransaction::WalletModelTransaction(const QList<SendCoinsRecipient> &_recipients) :
|
|
recipients(_recipients),
|
|
walletTransaction(0),
|
|
fee(0)
|
|
{
|
|
walletTransaction = new CWalletTx();
|
|
}
|
|
|
|
WalletModelTransaction::~WalletModelTransaction()
|
|
{
|
|
delete walletTransaction;
|
|
}
|
|
|
|
QList<SendCoinsRecipient> WalletModelTransaction::getRecipients() const
|
|
{
|
|
return recipients;
|
|
}
|
|
|
|
CWalletTx *WalletModelTransaction::getTransaction() const
|
|
{
|
|
return walletTransaction;
|
|
}
|
|
|
|
unsigned int WalletModelTransaction::getTransactionSize()
|
|
{
|
|
return (!walletTransaction ? 0 : (::GetSerializeSize(walletTransaction->tx, SER_NETWORK, PROTOCOL_VERSION)));
|
|
}
|
|
|
|
CAmount WalletModelTransaction::getTransactionFee() const
|
|
{
|
|
return fee;
|
|
}
|
|
|
|
void WalletModelTransaction::setTransactionFee(const CAmount& newFee)
|
|
{
|
|
fee = newFee;
|
|
}
|
|
|
|
void WalletModelTransaction::reassignAmounts()
|
|
{
|
|
// For each recipient look for a matching CTxOut in walletTransaction and reassign amounts
|
|
for (QList<SendCoinsRecipient>::iterator it = recipients.begin(); it != recipients.end(); ++it)
|
|
{
|
|
SendCoinsRecipient& rcp = (*it);
|
|
|
|
if (rcp.paymentRequest.IsInitialized())
|
|
{
|
|
CAmount subtotal = 0;
|
|
const payments::PaymentDetails& details = rcp.paymentRequest.getDetails();
|
|
for (int j = 0; j < details.outputs_size(); j++)
|
|
{
|
|
const payments::Output& out = details.outputs(j);
|
|
if (out.amount() <= 0) continue;
|
|
const unsigned char* scriptStr = (const unsigned char*)out.script().data();
|
|
CScript scriptPubKey(scriptStr, scriptStr+out.script().size());
|
|
for (const auto& txout : walletTransaction->tx->vout) {
|
|
if (txout.scriptPubKey == scriptPubKey) {
|
|
subtotal += txout.nValue;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
rcp.amount = subtotal;
|
|
}
|
|
else // normal recipient (no payment request)
|
|
{
|
|
for (const auto& txout : walletTransaction->tx->vout) {
|
|
CScript scriptPubKey = GetScriptForDestination(DecodeDestination(rcp.address.toStdString()));
|
|
if (txout.scriptPubKey == scriptPubKey) {
|
|
rcp.amount = txout.nValue;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
CAmount WalletModelTransaction::getTotalTransactionAmount() const
|
|
{
|
|
CAmount totalTransactionAmount = 0;
|
|
for (const SendCoinsRecipient &rcp : recipients)
|
|
{
|
|
totalTransactionAmount += rcp.amount;
|
|
}
|
|
return totalTransactionAmount;
|
|
}
|
|
|
|
void WalletModelTransaction::newPossibleKeyChange(CWallet *wallet)
|
|
{
|
|
keyChange.reset(new CReserveKey(wallet));
|
|
}
|
|
|
|
CReserveKey *WalletModelTransaction::getPossibleKeyChange()
|
|
{
|
|
return keyChange.get();
|
|
}
|