diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-05-13 16:25:31 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-05-13 16:25:31 +0300 |
commit | 27d86b73c63c7eea0473f11df348fc6a4a3b3e65 (patch) | |
tree | 80ec716cd5fd992f3a17b90df531a1ec45e27ea6 /src/wallet/wallet2_api.h | |
parent | i_wallet_callback: virtual dtor (diff) | |
download | monero-27d86b73c63c7eea0473f11df348fc6a4a3b3e65.tar.xz |
WalletListener::moneySpent(), WalletListener::moneyReceived()
Diffstat (limited to 'src/wallet/wallet2_api.h')
-rw-r--r-- | src/wallet/wallet2_api.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index 8e0830746..d38fd6708 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -108,6 +108,7 @@ struct WalletListener virtual ~WalletListener() = 0; virtual void moneySpent(const std::string &txId, uint64_t amount); virtual void moneyReceived(const std::string &txId, uint64_t amount); + // TODO: on_skip_transaction; }; |