mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-21 01:27:29 -04:00
Wallet: moneySpent, moneyReceived, newBlock signals
This commit is contained in:
@@ -113,12 +113,18 @@ public:
|
||||
|
||||
// TODO: setListenter() when it implemented in API
|
||||
signals:
|
||||
// emitted on every event happened with wallet
|
||||
// (money sent/received, new block)
|
||||
void updated();
|
||||
|
||||
// emitted when refresh process finished (could take a long time)
|
||||
// signalling only after we
|
||||
void refreshed();
|
||||
|
||||
void moneySpent(const QString &txId, quint64 amount);
|
||||
void moneyReceived(const QString &txId, quint64 amount);
|
||||
void newBlock(quint64 height);
|
||||
|
||||
|
||||
private:
|
||||
Wallet(Bitmonero::Wallet *w, QObject * parent = 0);
|
||||
|
||||
Reference in New Issue
Block a user