From 4e13ab306a1d5a06f75263bfca1577e301472018 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Tue, 13 Jun 2017 19:34:51 +0100 Subject: [PATCH] wallet_api: fix missing transaction parameter in callback It was unused, so harmless Reported by erikd on IRC --- src/wallet/api/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }