diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-09-30 19:04:29 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-29 11:37:08 +0000 |
commit | 886ed250555a32c05757e9b86563890156d4f045 (patch) | |
tree | 0662118950882647ad73741de7c71fb342dd85e4 /src | |
parent | Merge pull request #6044 (diff) | |
download | monero-886ed250555a32c05757e9b86563890156d4f045.tar.xz |
blockchain: fix comment wrongly refering to SHA-3 rather than Keccak
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/blockchain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/blockchain.h b/src/cryptonote_core/blockchain.h index 6467031c2..59860e67e 100644 --- a/src/cryptonote_core/blockchain.h +++ b/src/cryptonote_core/blockchain.h @@ -1042,7 +1042,7 @@ namespace cryptonote std::unordered_map<crypto::hash, std::unordered_map<crypto::key_image, std::vector<output_data_t>>> m_scan_table; std::unordered_map<crypto::hash, crypto::hash> m_blocks_longhash_table; - // SHA-3 hashes for each block and for fast pow checking + // Keccak hashes for each block and for fast pow checking std::vector<std::pair<crypto::hash, crypto::hash>> m_blocks_hash_of_hashes; std::vector<std::pair<crypto::hash, uint64_t>> m_blocks_hash_check; std::vector<crypto::hash> m_blocks_txs_check; |