mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-29 16:24:22 +00:00
f6f8d54aff
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
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
// Copyright (c) 2011-2014 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_QT_WALLETMODELTRANSACTION_H
|
|
#define BITCOIN_QT_WALLETMODELTRANSACTION_H
|
|
|
|
#include <qt/walletmodel.h>
|
|
|
|
#include <QObject>
|
|
|
|
class SendCoinsRecipient;
|
|
|
|
class CReserveKey;
|
|
class CWallet;
|
|
class CWalletTx;
|
|
|
|
/** Data model for a walletmodel transaction. */
|
|
class WalletModelTransaction
|
|
{
|
|
public:
|
|
explicit WalletModelTransaction(const QList<SendCoinsRecipient> &recipients);
|
|
~WalletModelTransaction();
|
|
|
|
QList<SendCoinsRecipient> getRecipients() const;
|
|
|
|
CWalletTx *getTransaction() const;
|
|
unsigned int getTransactionSize();
|
|
|
|
void setTransactionFee(const CAmount& newFee);
|
|
CAmount getTransactionFee() const;
|
|
|
|
CAmount getTotalTransactionAmount() const;
|
|
|
|
void newPossibleKeyChange(CWallet *wallet);
|
|
CReserveKey *getPossibleKeyChange();
|
|
|
|
void reassignAmounts(int nChangePosRet); // needed for the subtract-fee-from-amount feature
|
|
|
|
private:
|
|
QList<SendCoinsRecipient> recipients;
|
|
CWalletTx *walletTransaction;
|
|
std::unique_ptr<CReserveKey> keyChange;
|
|
CAmount fee;
|
|
};
|
|
|
|
#endif // BITCOIN_QT_WALLETMODELTRANSACTION_H
|