aboutsummaryrefslogtreecommitdiff
path: root/src/cuckoocache.h
diff options
context:
space:
mode:
authorSawyer Billings <sawpaw19@gmail.com>2020-12-30 21:49:12 -0500
committerfanquake <fanquake@gmail.com>2021-01-04 12:23:16 +0800
commite8640849c775efcf202dbd34736fed8d61379c49 (patch)
tree61f54fc033bdd157d33e6afd89a96c929592beb3 /src/cuckoocache.h
parentf52f427b8eece858844c395e47c378864acc242d (diff)
downloadbitcoin-e8640849c775efcf202dbd34736fed8d61379c49.tar.xz
doc: Use https URLs where possible
Diffstat (limited to 'src/cuckoocache.h')
-rw-r--r--src/cuckoocache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuckoocache.h b/src/cuckoocache.h
index 2daf676c4a..1166466771 100644
--- a/src/cuckoocache.h
+++ b/src/cuckoocache.h
@@ -225,7 +225,7 @@ private:
* [0, 1) and simply multiply it by the size. Then we just shift the result down by
* 32-bits to get our bucket number. The result has non-uniformity the same as a
* mod, but it is much faster to compute. More about this technique can be found at
- * http://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction/ .
+ * https://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction/ .
*
* The resulting non-uniformity is also more equally distributed which would be
* advantageous for something like linear probing, though it shouldn't matter