aboutsummaryrefslogtreecommitdiff
path: root/src/util/hasher.h
diff options
context:
space:
mode:
authorMartin Zumsande <mzumsande@gmail.com>2021-08-22 17:32:43 +0200
committerMartin Zumsande <mzumsande@gmail.com>2021-08-22 17:32:43 +0200
commit4c69571e6eeae2c03d59045ea102baa5fd1c3816 (patch)
tree56f0f6916832af8f0d9e921b2e9845c74b94d2dc /src/util/hasher.h
parent16652a93ea6d25674fe318ef5e213e98427c8947 (diff)
downloadbitcoin-4c69571e6eeae2c03d59045ea102baa5fd1c3816.tar.xz
doc: remove outdated comment
No longer relevant because Boost 1.46 is no longer supported and std::unordered_map is used instead of boost::unordered_map in CCoinsMap.
Diffstat (limited to 'src/util/hasher.h')
-rw-r--r--src/util/hasher.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/util/hasher.h b/src/util/hasher.h
index fa2fea30d8..9b79a1b5f1 100644
--- a/src/util/hasher.h
+++ b/src/util/hasher.h
@@ -33,10 +33,6 @@ public:
SaltedOutpointHasher();
/**
- * This *must* return size_t. With Boost 1.46 on 32-bit systems the
- * unordered_map will behave unpredictably if the custom hasher returns a
- * uint64_t, resulting in failures when syncing the chain (#4634).
- *
* Having the hash noexcept allows libstdc++'s unordered_map to recalculate
* the hash during rehash, so it does not have to cache the value. This
* reduces node's memory by sizeof(size_t). The required recalculation has