diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-06-13 19:34:51 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-06-13 19:34:51 +0100 |
commit | 4e13ab306a1d5a06f75263bfca1577e301472018 (patch) | |
tree | 9df0ac6872913d4da36ccfc648fc04dd5184fc07 /src/wallet/api/wallet.cpp | |
parent | Merge pull request #2059 (diff) | |
download | monero-4e13ab306a1d5a06f75263bfca1577e301472018.tar.xz |
wallet_api: fix missing transaction parameter in callback
It was unused, so harmless
Reported by erikd on IRC
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r-- | src/wallet/api/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index 1b4300edf..6a0e1727c 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -144,7 +144,7 @@ struct Wallet2CallbackImpl : public tools::i_wallet2_callback } } - virtual void on_skip_transaction(uint64_t height, const crypto::hash &txid) + virtual void on_skip_transaction(uint64_t height, const crypto::hash &txid, const cryptonote::transaction& tx) { // TODO; } |