aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-06-13 19:34:51 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-06-13 19:34:51 +0100
commit4e13ab306a1d5a06f75263bfca1577e301472018 (patch)
tree9df0ac6872913d4da36ccfc648fc04dd5184fc07 /src
parentMerge pull request #2059 (diff)
downloadmonero-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')
-rw-r--r--src/wallet/api/wallet.cpp2
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;
}