Use a typedef for monetary values
This commit is contained in:
committed by
Mark Friedenbach
parent
64cfaf891f
commit
a372168e77
@@ -5,6 +5,8 @@
|
||||
#ifndef WALLETVIEW_H
|
||||
#define WALLETVIEW_H
|
||||
|
||||
#include "amount.h"
|
||||
|
||||
#include <QStackedWidget>
|
||||
|
||||
class BitcoinGUI;
|
||||
@@ -111,7 +113,7 @@ signals:
|
||||
/** Encryption status of wallet changed */
|
||||
void encryptionStatusChanged(int status);
|
||||
/** Notify that a new transaction appeared */
|
||||
void incomingTransaction(const QString& date, int unit, qint64 amount, const QString& type, const QString& address);
|
||||
void incomingTransaction(const QString& date, int unit, const CAmount& amount, const QString& type, const QString& address);
|
||||
};
|
||||
|
||||
#endif // WALLETVIEW_H
|
||||
|
||||
Reference in New Issue
Block a user