aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Rand <jeremyrand@airmail.cc>2021-09-16 22:00:20 +0000
committerJeremy Rand <jeremyrand@airmail.cc>2021-09-16 22:00:20 +0000
commit9bdda50151dd808cbad094d457bf0ed7939a7c87 (patch)
treeae0ff0bda6061d763a163c30752c4cbdc259ce63
parent6ef84e0503994c53f77093e7ea5951a7b0edea7a (diff)
downloadbitcoin-9bdda50151dd808cbad094d457bf0ed7939a7c87.tar.xz
Enable TLS in links in documentation
-rw-r--r--CONTRIBUTING.md4
-rw-r--r--contrib/guix/INSTALL.md2
-rw-r--r--contrib/guix/README.md2
-rw-r--r--doc/developer-notes.md2
-rw-r--r--src/test/data/README.md2
-rw-r--r--test/functional/README.md2
6 files changed, 7 insertions, 7 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e0d3671b07..acf5cc08d1 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -60,8 +60,8 @@ Most communication about Bitcoin Core development happens on IRC, in the
`#bitcoin-core-dev` channel on Libera Chat. The easiest way to participate on IRC is
with the web client, [web.libera.chat](https://web.libera.chat/#bitcoin-core-dev). Chat
history logs can be found
-on [http://www.erisian.com.au/bitcoin-core-dev/](http://www.erisian.com.au/bitcoin-core-dev/)
-and [http://gnusha.org/bitcoin-core-dev/](http://gnusha.org/bitcoin-core-dev/).
+on [https://www.erisian.com.au/bitcoin-core-dev/](https://www.erisian.com.au/bitcoin-core-dev/)
+and [https://gnusha.org/bitcoin-core-dev/](https://gnusha.org/bitcoin-core-dev/).
Discussion about codebase improvements happens in GitHub issues and pull
requests.
diff --git a/contrib/guix/INSTALL.md b/contrib/guix/INSTALL.md
index 63aa3e02b2..68aae18731 100644
--- a/contrib/guix/INSTALL.md
+++ b/contrib/guix/INSTALL.md
@@ -358,7 +358,7 @@ This is especially notable because Ubuntu Focal packages `libgit2 v0.28.4`, and
Should you be in this situation, you need to build both `libgit2 v1.1.x` and
`guile-git` from source.
-Source: http://logs.guix.gnu.org/guix/2020-11-12.log#232527
+Source: https://logs.guix.gnu.org/guix/2020-11-12.log#232527
##### `{scheme,guile}-bytestructures` v1.0.8 and v1.0.9 are broken for Guile v2.2
diff --git a/contrib/guix/README.md b/contrib/guix/README.md
index 2bb464a40d..ee2b7a574a 100644
--- a/contrib/guix/README.md
+++ b/contrib/guix/README.md
@@ -467,7 +467,7 @@ start over.
- `/root/.cache/guix/`
- `/root/.guix-profile/`
-[b17e]: http://bootstrappable.org/
+[b17e]: https://bootstrappable.org/
[r12e/source-date-epoch]: https://reproducible-builds.org/docs/source-date-epoch/
[guix/install.sh]: https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh
diff --git a/doc/developer-notes.md b/doc/developer-notes.md
index 3e13adeec0..ffb6632e21 100644
--- a/doc/developer-notes.md
+++ b/doc/developer-notes.md
@@ -349,7 +349,7 @@ make cov
Profiling is a good way to get a precise idea of where time is being spent in
code. One tool for doing profiling on Linux platforms is called
-[`perf`](http://www.brendangregg.com/perf.html), and has been integrated into
+[`perf`](https://www.brendangregg.com/perf.html), and has been integrated into
the functional test framework. Perf can observe a running process and sample
(at some frequency) where its execution is.
diff --git a/src/test/data/README.md b/src/test/data/README.md
index 2463daa42a..a05d9c668b 100644
--- a/src/test/data/README.md
+++ b/src/test/data/README.md
@@ -8,5 +8,5 @@ License
The data files in this directory are distributed under the MIT software
license, see the accompanying file COPYING or
-http://www.opensource.org/licenses/mit-license.php.
+https://www.opensource.org/licenses/mit-license.php.
diff --git a/test/functional/README.md b/test/functional/README.md
index d830ba0334..926810cf03 100644
--- a/test/functional/README.md
+++ b/test/functional/README.md
@@ -188,5 +188,5 @@ perf report -i /path/to/datadir/send-big-msgs.perf.data.xxxx --stdio | c++filt |
#### See also:
- [Installing perf](https://askubuntu.com/q/50145)
-- [Perf examples](http://www.brendangregg.com/perf.html)
+- [Perf examples](https://www.brendangregg.com/perf.html)
- [Hotspot](https://github.com/KDAB/hotspot): a GUI for perf output analysis