Merge pull request #1422

9b00d80f wallet2: pass by const ref where possible (moneromooo-monero)
pull/95/head
Riccardo Spagni 8 years ago
commit 2d0fbaf35b
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -558,7 +558,7 @@ void wallet2::check_acc_out_precomp(const crypto::public_key &spend_public_key,
error = false;
}
//----------------------------------------------------------------------------------------------------
static uint64_t decodeRct(const rct::rctSig & rv, const crypto::public_key pub, const crypto::secret_key &sec, unsigned int i, rct::key & mask)
static uint64_t decodeRct(const rct::rctSig & rv, const crypto::public_key &pub, const crypto::secret_key &sec, unsigned int i, rct::key & mask)
{
crypto::key_derivation derivation;
bool r = crypto::generate_key_derivation(pub, sec, derivation);

Loading…
Cancel
Save