1
0
Fork 0
forked from lthn/blockchain

hidden amounts in wallet: fixed missing argument

This commit is contained in:
cryptozoidberg 2022-06-28 17:52:12 +02:00
parent 61f215e552
commit a3947ea0c9
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -1961,7 +1961,7 @@ namespace currency
return true;
}
//---------------------------------------------------------------
bool lookup_acc_outs(const account_keys& acc, const transaction& tx, std::vector<std::pair<size_t, amount>>& outs, uint64_t& money_transfered, crypto::key_derivation& derivation)
bool lookup_acc_outs(const account_keys& acc, const transaction& tx, std::vector<wallet_input_info>& outs, uint64_t& money_transfered, crypto::key_derivation& derivation)
{
crypto::public_key tx_pub_key = get_tx_pub_key_from_extra(tx);
if (null_pkey == tx_pub_key)