Use a typedef for monetary values
This commit is contained in:
committed by
Mark Friedenbach
parent
64cfaf891f
commit
a372168e77
@@ -26,10 +26,10 @@ public:
|
||||
|
||||
CWalletTx *getTransaction();
|
||||
|
||||
void setTransactionFee(qint64 newFee);
|
||||
qint64 getTransactionFee();
|
||||
void setTransactionFee(const CAmount& newFee);
|
||||
CAmount getTransactionFee();
|
||||
|
||||
qint64 getTotalTransactionAmount();
|
||||
CAmount getTotalTransactionAmount();
|
||||
|
||||
void newPossibleKeyChange(CWallet *wallet);
|
||||
CReserveKey *getPossibleKeyChange();
|
||||
@@ -38,7 +38,7 @@ private:
|
||||
const QList<SendCoinsRecipient> recipients;
|
||||
CWalletTx *walletTransaction;
|
||||
CReserveKey *keyChange;
|
||||
qint64 fee;
|
||||
CAmount fee;
|
||||
};
|
||||
|
||||
#endif // WALLETMODELTRANSACTION_H
|
||||
|
||||
Reference in New Issue
Block a user