From 2c6aad7ea70d9f1a0efd6f6a653aed7a3148db06 Mon Sep 17 00:00:00 2001 From: Jaquee Date: Fri, 4 Aug 2017 23:18:46 +0200 Subject: [PATCH] wallet2: add on_pool_tx_removed callback --- src/wallet/wallet2.h | 1 + 1 file changed, 1 insertion(+) 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() {} };