diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-05-16 13:11:44 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-06-23 16:01:33 +0300 |
commit | 64348a2d11e47893edd283639e5615e4c90ecd4c (patch) | |
tree | f4a983fffdff721fb43796cfe28d4058aa9a1b65 /src/wallet/wallet2_api.h | |
parent | WalletListener::moneySpent(), WalletListener::moneyReceived() (diff) | |
download | monero-64348a2d11e47893edd283639e5615e4c90ecd4c.tar.xz |
WalletListener::moneySpent test
Diffstat (limited to 'src/wallet/wallet2_api.h')
-rw-r--r-- | src/wallet/wallet2_api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index d38fd6708..7841c299d 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -106,8 +106,8 @@ struct TransactionHistory 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); + virtual void moneySpent(const std::string &txId, uint64_t amount) = 0; + virtual void moneyReceived(const std::string &txId, uint64_t amount) = 0; // TODO: on_skip_transaction; }; |