Skip to content

Commit d2186b3

Browse files
committed
Merge #13742: doc: Adjust bitcoincore.org links
fa45151 doc: Adjust bitcoincore.org links (MarcoFalke) Pull request description: Minor adjustments to our https://bitcoincore.org/ links: Mainly adding links of the Bitcoin Core Github mirror and Bitcoin Core website to the doxygen introduction. (See e.g. current master: https://dev.visucore.com/bitcoin/doxygen/index.html). Also removing the link to bitcoin.org, to not imply there is only one resource that educates about bitcoin. Tree-SHA512: d4d50f6de4d4b412203934e947889ebc0f564747e26f9190a2cff64234bf9fc3d56b8f056651550ce568170fba448559fa005959ef4e504d990e2fbc96a2ed77
2 parents 0a34593 + fa45151 commit d2186b3

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ out collectively by the network. Bitcoin Core is the name of open source
1515
software which enables the use of this currency.
1616

1717
For more information, as well as an immediately useable, binary version of
18-
the Bitcoin Core software, see https://bitcoin.org/en/download, or read the
18+
the Bitcoin Core software, see https://bitcoincore.org/en/download/, or read the
1919
[original whitepaper](https://bitcoincore.org/bitcoin.pdf).
2020

2121
License

src/bitcoind.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@
2929
*
3030
* \section intro_sec Introduction
3131
*
32-
* This is the developer documentation of the reference client for an experimental new digital currency called Bitcoin (https://www.bitcoin.org/),
32+
* This is the developer documentation of the reference client for an experimental new digital currency called Bitcoin,
3333
* which enables instant payments to anyone, anywhere in the world. Bitcoin uses peer-to-peer technology to operate
3434
* with no central authority: managing transactions and issuing money are carried out collectively by the network.
3535
*
3636
* The software is a community-driven open source project, released under the MIT license.
3737
*
38+
* See https://github.com/bitcoin/bitcoin and https://bitcoincore.org/ for further information about the project.
39+
*
3840
* \section Navigation
3941
* Use the buttons <code>Namespaces</code>, <code>Classes</code> or <code>Files</code> at the top of the page to start navigating the code.
4042
*/

src/test/netbase_tests.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ bool static TestSplitHost(std::string test, std::string host, int port)
8282

8383
BOOST_AUTO_TEST_CASE(netbase_splithost)
8484
{
85-
BOOST_CHECK(TestSplitHost("www.bitcoin.org", "www.bitcoin.org", -1));
86-
BOOST_CHECK(TestSplitHost("[www.bitcoin.org]", "www.bitcoin.org", -1));
87-
BOOST_CHECK(TestSplitHost("www.bitcoin.org:80", "www.bitcoin.org", 80));
88-
BOOST_CHECK(TestSplitHost("[www.bitcoin.org]:80", "www.bitcoin.org", 80));
85+
BOOST_CHECK(TestSplitHost("www.bitcoincore.org", "www.bitcoincore.org", -1));
86+
BOOST_CHECK(TestSplitHost("[www.bitcoincore.org]", "www.bitcoincore.org", -1));
87+
BOOST_CHECK(TestSplitHost("www.bitcoincore.org:80", "www.bitcoincore.org", 80));
88+
BOOST_CHECK(TestSplitHost("[www.bitcoincore.org]:80", "www.bitcoincore.org", 80));
8989
BOOST_CHECK(TestSplitHost("127.0.0.1", "127.0.0.1", -1));
9090
BOOST_CHECK(TestSplitHost("127.0.0.1:8333", "127.0.0.1", 8333));
9191
BOOST_CHECK(TestSplitHost("[127.0.0.1]", "127.0.0.1", -1));

0 commit comments

Comments
 (0)