2018-07-26 18:36:45 -04:00
|
|
|
// Copyright (c) 2011-2018 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-04 12:20:43 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-06 15:12:47 -03:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config/bitcoin-config.h>
|
|
|
|
#endif
|
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <qt/walletmodeltransaction.h>
|
2013-08-30 14:04:48 -04:00
|
|
|
|
2018-04-07 04:42:02 -03:00
|
|
|
#include <interfaces/node.h>
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <policy/policy.h>
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2016-09-09 08:43:29 -03:00
|
|
|
WalletModelTransaction::WalletModelTransaction(const QList<SendCoinsRecipient> &_recipients) :
|
|
|
|
recipients(_recipients),
|
2013-08-30 14:04:48 -04:00
|
|
|
fee(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-03-09 09:34:54 -03:00
|
|
|
QList<SendCoinsRecipient> WalletModelTransaction::getRecipients() const
|
2013-08-30 14:04:48 -04:00
|
|
|
{
|
|
|
|
return recipients;
|
|
|
|
}
|
|
|
|
|
2018-04-07 04:42:02 -03:00
|
|
|
std::unique_ptr<interfaces::PendingWalletTx>& WalletModelTransaction::getWtx()
|
2013-08-30 14:04:48 -04:00
|
|
|
{
|
2017-04-17 19:56:44 -03:00
|
|
|
return wtx;
|
2013-08-30 14:04:48 -04:00
|
|
|
}
|
|
|
|
|
2014-11-01 20:14:47 -03:00
|
|
|
unsigned int WalletModelTransaction::getTransactionSize()
|
|
|
|
{
|
2017-04-17 19:56:44 -03:00
|
|
|
return wtx ? wtx->getVirtualSize() : 0;
|
2014-11-01 20:14:47 -03:00
|
|
|
}
|
|
|
|
|
2017-03-09 09:34:54 -03:00
|
|
|
CAmount WalletModelTransaction::getTransactionFee() const
|
2013-08-30 14:04:48 -04:00
|
|
|
{
|
|
|
|
return fee;
|
|
|
|
}
|
|
|
|
|
2014-04-22 19:46:19 -03:00
|
|
|
void WalletModelTransaction::setTransactionFee(const CAmount& newFee)
|
2013-08-30 14:04:48 -04:00
|
|
|
{
|
2013-09-28 14:29:44 -03:00
|
|
|
fee = newFee;
|
2013-08-30 14:04:48 -04:00
|
|
|
}
|
|
|
|
|
2014-07-23 08:34:36 -04:00
|
|
|
void WalletModelTransaction::reassignAmounts(int nChangePosRet)
|
|
|
|
{
|
2017-04-17 19:56:44 -03:00
|
|
|
const CTransaction* walletTransaction = &wtx->get();
|
2014-07-23 08:34:36 -04:00
|
|
|
int i = 0;
|
|
|
|
for (QList<SendCoinsRecipient>::iterator it = recipients.begin(); it != recipients.end(); ++it)
|
|
|
|
{
|
|
|
|
SendCoinsRecipient& rcp = (*it);
|
|
|
|
|
2017-11-06 15:12:47 -03:00
|
|
|
#ifdef ENABLE_BIP70
|
2014-07-23 08:34:36 -04:00
|
|
|
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;
|
|
|
|
if (i == nChangePosRet)
|
|
|
|
i++;
|
2017-02-02 17:30:03 -03:00
|
|
|
subtotal += walletTransaction->vout[i].nValue;
|
2014-07-23 08:34:36 -04:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
rcp.amount = subtotal;
|
|
|
|
}
|
|
|
|
else // normal recipient (no payment request)
|
2017-11-06 15:12:47 -03:00
|
|
|
#endif
|
2014-07-23 08:34:36 -04:00
|
|
|
{
|
|
|
|
if (i == nChangePosRet)
|
|
|
|
i++;
|
2017-02-02 17:30:03 -03:00
|
|
|
rcp.amount = walletTransaction->vout[i].nValue;
|
2014-07-23 08:34:36 -04:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-09 09:34:54 -03:00
|
|
|
CAmount WalletModelTransaction::getTotalTransactionAmount() const
|
2013-08-30 14:04:48 -04:00
|
|
|
{
|
2014-04-22 19:46:19 -03:00
|
|
|
CAmount totalTransactionAmount = 0;
|
2017-06-01 21:25:02 -04:00
|
|
|
for (const SendCoinsRecipient &rcp : recipients)
|
2013-08-30 14:04:48 -04:00
|
|
|
{
|
2013-09-28 14:29:44 -03:00
|
|
|
totalTransactionAmount += rcp.amount;
|
2013-08-30 14:04:48 -04:00
|
|
|
}
|
|
|
|
return totalTransactionAmount;
|
|
|
|
}
|