diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-05-13 12:59:29 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-06-23 16:01:33 +0300 |
commit | 214014c048dfa87a5e6e4b8de3b7577d2ffc5513 (patch) | |
tree | 3504fcaa41513fc822a2ecd021d310bdafe032a4 /src | |
parent | started WalletListener (diff) | |
download | monero-214014c048dfa87a5e6e4b8de3b7577d2ffc5513.tar.xz |
i_wallet_callback: virtual dtor
Diffstat (limited to 'src')
-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 6763fbee9..6e49b8dac 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -61,6 +61,7 @@ namespace tools virtual void on_money_received(uint64_t height, const cryptonote::transaction& tx, size_t out_index) {} virtual void on_money_spent(uint64_t height, const cryptonote::transaction& in_tx, size_t out_index, const cryptonote::transaction& spend_tx) {} virtual void on_skip_transaction(uint64_t height, const cryptonote::transaction& tx) {} + virtual ~i_wallet2_callback() {} }; struct tx_dust_policy |