diff options
author | doy-lee <doylet@protonmail.com> | 2018-12-19 14:45:13 +1100 |
---|---|---|
committer | doy-lee <doylet@protonmail.com> | 2018-12-19 14:45:13 +1100 |
commit | 99765b218e9e581dc6cab32d7abc25d7f176ce23 (patch) | |
tree | 0d8d74cee1decc58f8210e5b95704dce8510f558 /src/wallet/wallet2.cpp | |
parent | Merge pull request #4927 (diff) | |
download | monero-99765b218e9e581dc6cab32d7abc25d7f176ce23.tar.xz |
Remove unused hash in export_key_images
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r-- | src/wallet/wallet2.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 097278961..63b17e20f 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -10699,9 +10699,6 @@ std::pair<size_t, std::vector<std::pair<crypto::key_image, crypto::signature>>> { const transfer_details &td = m_transfers[n]; - crypto::hash hash; - crypto::cn_fast_hash(&td.m_key_image, sizeof(td.m_key_image), hash); - // get ephemeral public key const cryptonote::tx_out &out = td.m_tx.vout[td.m_internal_output_index]; THROW_WALLET_EXCEPTION_IF(out.target.type() != typeid(txout_to_key), error::wallet_internal_error, |