Dash Core Source Documentation (0.16.0.1)

Find detailed information regarding the Dash Core source code.

walletmodeltransaction.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2014 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_QT_WALLETMODELTRANSACTION_H
6 #define BITCOIN_QT_WALLETMODELTRANSACTION_H
7 
8 #include <qt/walletmodel.h>
9 
10 #include <memory>
11 
12 #include <QObject>
13 
14 class SendCoinsRecipient;
15 
16 class CReserveKey;
17 class CWallet;
18 class CWalletTx;
19 
22 {
23 public:
24  explicit WalletModelTransaction(const QList<SendCoinsRecipient> &recipients);
26 
27  QList<SendCoinsRecipient> getRecipients() const;
28 
29  CWalletTx *getTransaction() const;
30  unsigned int getTransactionSize();
31 
32  void setTransactionFee(const CAmount& newFee);
33  CAmount getTransactionFee() const;
34 
36 
37  void newPossibleKeyChange(CWallet *wallet);
39 
40  void reassignAmounts(); // needed for the subtract-fee-from-amount feature
41 
42 private:
43  QList<SendCoinsRecipient> recipients;
45  std::unique_ptr<CReserveKey> keyChange;
47 };
48 
49 #endif // BITCOIN_QT_WALLETMODELTRANSACTION_H
CWalletTx * getTransaction() const
std::unique_ptr< CReserveKey > keyChange
QList< SendCoinsRecipient > getRecipients() const
void newPossibleKeyChange(CWallet *wallet)
void setTransactionFee(const CAmount &newFee)
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
WalletModelTransaction(const QList< SendCoinsRecipient > &recipients)
A transaction with a bunch of additional info that only the owner cares about.
Definition: wallet.h:280
A key allocated from the key pool.
Definition: wallet.h:1273
A CWallet is an extension of a keystore, which also maintains a set of transactions and balances...
Definition: wallet.h:715
Data model for a walletmodel transaction.
CAmount getTotalTransactionAmount() const
QList< SendCoinsRecipient > recipients
Released under the MIT license