WalletListener::moneySpent(), WalletListener::moneyReceived()

This commit is contained in:
Ilya Kitaev
2016-05-13 16:25:31 +03:00
parent 214014c048
commit 060bb62e29
2 changed files with 22 additions and 2 deletions

View File

@@ -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;
};