2013-08-30 20:04:48 +02:00
|
|
|
#include "walletmodeltransaction.h"
|
|
|
|
|
|
|
|
WalletModelTransaction::WalletModelTransaction(const QList<SendCoinsRecipient> &recipients) :
|
|
|
|
recipients(recipients),
|
|
|
|
walletTransaction(0),
|
|
|
|
keyChange(0),
|
|
|
|
fee(0)
|
|
|
|
{
|
|
|
|
walletTransaction = new CWalletTx();
|
|
|
|
}
|
|
|
|
|
|
|
|
WalletModelTransaction::~WalletModelTransaction()
|
|
|
|
{
|
|
|
|
delete keyChange;
|
|
|
|
delete walletTransaction;
|
|
|
|
}
|
|
|
|
|
|
|
|
QList<SendCoinsRecipient> WalletModelTransaction::getRecipients()
|
|
|
|
{
|
|
|
|
return recipients;
|
|
|
|
}
|
|
|
|
|
|
|
|
CWalletTx *WalletModelTransaction::getTransaction()
|
|
|
|
{
|
|
|
|
return walletTransaction;
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 WalletModelTransaction::getTransactionFee()
|
|
|
|
{
|
|
|
|
return fee;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WalletModelTransaction::setTransactionFee(qint64 newFee)
|
|
|
|
{
|
2013-09-28 19:29:44 +02:00
|
|
|
fee = newFee;
|
2013-08-30 20:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
qint64 WalletModelTransaction::getTotalTransactionAmount()
|
|
|
|
{
|
|
|
|
qint64 totalTransactionAmount = 0;
|
|
|
|
foreach(const SendCoinsRecipient &rcp, recipients)
|
|
|
|
{
|
2013-09-28 19:29:44 +02:00
|
|
|
totalTransactionAmount += rcp.amount;
|
2013-08-30 20:04:48 +02:00
|
|
|
}
|
|
|
|
return totalTransactionAmount;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WalletModelTransaction::newPossibleKeyChange(CWallet *wallet)
|
|
|
|
{
|
|
|
|
keyChange = new CReserveKey(wallet);
|
|
|
|
}
|
|
|
|
|
|
|
|
CReserveKey *WalletModelTransaction::getPossibleKeyChange()
|
|
|
|
{
|
|
|
|
return keyChange;
|
|
|
|
}
|