diff options
author | Jaquee <jaquee.monero@gmail.com> | 2017-08-04 23:18:46 +0200 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2017-10-15 17:35:15 +0200 |
commit | 2c6aad7ea70d9f1a0efd6f6a653aed7a3148db06 (patch) | |
tree | ee1f618431c9ff643b0cfde8ac978714f77861a1 /src/wallet | |
parent | wallet2: light wallet member variables (diff) | |
download | monero-2c6aad7ea70d9f1a0efd6f6a653aed7a3148db06.tar.xz |
wallet2: add on_pool_tx_removed callback
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 02bf3b893..37f59f831 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -76,6 +76,7 @@ namespace tools virtual void on_unconfirmed_money_received(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx, uint64_t amount, const cryptonote::subaddress_index& subaddr_index) {} virtual void on_money_spent(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& in_tx, uint64_t amount, const cryptonote::transaction& spend_tx, const cryptonote::subaddress_index& subaddr_index) {} virtual void on_skip_transaction(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx) {} + virtual void on_pool_tx_removed(const crypto::hash &txid) {} virtual ~i_wallet2_callback() {} }; |