Bitcoin
walletmodeltransaction.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2018 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 #include <amount.h>
12 
13 #include <QObject>
14 
15 class SendCoinsRecipient;
16 
17 namespace interfaces {
18 class Node;
19 class PendingWalletTx;
20 }
21 
24 {
25 public:
26  explicit WalletModelTransaction(const QList<SendCoinsRecipient> &recipients);
27 
28  QList<SendCoinsRecipient> getRecipients() const;
29 
30  std::unique_ptr<interfaces::PendingWalletTx>& getWtx();
31  unsigned int getTransactionSize();
32 
33  void setTransactionFee(const CAmount& newFee);
34  CAmount getTransactionFee() const;
35 
37 
38  void reassignAmounts(int nChangePosRet); // needed for the subtract-fee-from-amount feature
39 
40 private:
41  QList<SendCoinsRecipient> recipients;
42  std::unique_ptr<interfaces::PendingWalletTx> wtx;
44 };
45 
46 #endif // BITCOIN_QT_WALLETMODELTRANSACTION_H
void reassignAmounts(int nChangePosRet)
Definition: walletmodeltransaction.cpp:44
unsigned int getTransactionSize()
Definition: walletmodeltransaction.cpp:29
int64_t CAmount
Definition: amount.h:12
QList< SendCoinsRecipient > recipients
Definition: walletmodeltransaction.h:41
CAmount getTransactionFee() const
Definition: walletmodeltransaction.cpp:34
Definition: dummywallet.cpp:11
Definition: walletmodeltransaction.h:23
CAmount getTotalTransactionAmount() const
Definition: walletmodeltransaction.cpp:79
void setTransactionFee(const CAmount &newFee)
Definition: walletmodeltransaction.cpp:39
std::unique_ptr< interfaces::PendingWalletTx > wtx
Definition: walletmodeltransaction.h:42
QList< SendCoinsRecipient > getRecipients() const
Definition: walletmodeltransaction.cpp:19
std::unique_ptr< interfaces::PendingWalletTx > & getWtx()
Definition: walletmodeltransaction.cpp:24
CAmount fee
Definition: walletmodeltransaction.h:43
Definition: walletmodel.h:54
WalletModelTransaction(const QList< SendCoinsRecipient > &recipients)
Definition: walletmodeltransaction.cpp:13