diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 748b27e34..0bf4f097e 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3592,8 +3592,6 @@ void wallet2::remove_obsolete_pool_txs(const std::unordered_set &t { MDEBUG("Removing " << txid << " from unconfirmed payments"); m_unconfirmed_payments.erase(pit); - if (0 != m_callback) - m_callback->on_pool_tx_removed(txid); } } } diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 9371c7161..e310d6441 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -137,8 +137,6 @@ private: virtual boost::optional on_device_pin_request() { return boost::none; } virtual boost::optional on_device_passphrase_request(bool & on_device) { on_device = true; return boost::none; } virtual void on_device_progress(const hw::device_progress& event) {}; - // Common callbacks - virtual void on_pool_tx_removed(const crypto::hash &txid) {} virtual ~i_wallet2_callback() {} };