From 6f4b36a8a8456d275e4a5677585b299718dbb0f8 Mon Sep 17 00:00:00 2001 From: sowle Date: Sat, 28 Sep 2019 18:14:10 +0300 Subject: [PATCH] minor naming fix --- src/currency_core/currency_format_utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/currency_core/currency_format_utils.cpp b/src/currency_core/currency_format_utils.cpp index 8fd732a3..9870ed52 100644 --- a/src/currency_core/currency_format_utils.cpp +++ b/src/currency_core/currency_format_utils.cpp @@ -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))