1
0
Fork 0
forked from lthn/blockchain

minor naming fix

This commit is contained in:
sowle 2019-09-28 18:14:10 +03:00
parent e0967147bd
commit 6f4b36a8a8
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -1550,8 +1550,8 @@ namespace currency
bool check_tx_derivation_hint(const transaction& tx, const crypto::key_derivation& derivation)
{
bool found_der_xor = false;
uint16_t my_derive_xor = get_derivation_hint(derivation);
tx_derivation_hint dh = make_tx_derivation_hint_from_uint16(my_derive_xor);
uint16_t hint = get_derivation_hint(derivation);
tx_derivation_hint dh = make_tx_derivation_hint_from_uint16(hint);
for (auto& e : tx.extra)
{
if (e.type() == typeid(tx_derivation_hint))