wallet_api: fix missing transaction parameter in callback

It was unused, so harmless

Reported by erikd on IRC
This commit is contained in:
moneromooo-monero 2017-06-13 19:34:51 +01:00
parent e3da0ca828
commit 4e13ab306a
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -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;
}