Skip to content

Commit fa45151

Browse files
author
MarcoFalke
committed
doc: Adjust bitcoincore.org links
1 parent 05714f9 commit fa45151

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
@@ -31,12 +31,14 @@
3131
*
3232
* \section intro_sec Introduction
3333
*
34-
* This is the developer documentation of the reference client for an experimental new digital currency called Bitcoin (https://www.bitcoin.org/),
34+
* This is the developer documentation of the reference client for an experimental new digital currency called Bitcoin,
3535
* which enables instant payments to anyone, anywhere in the world. Bitcoin uses peer-to-peer technology to operate
3636
* with no central authority: managing transactions and issuing money are carried out collectively by the network.
3737
*
3838
* The software is a community-driven open source project, released under the MIT license.
3939
*
40+
* See https://github.com/bitcoin/bitcoin and https://bitcoincore.org/ for further information about the project.
41+
*
4042
* \section Navigation
4143
* Use the buttons <code>Namespaces</code>, <code>Classes</code> or <code>Files</code> at the top of the page to start navigating the code.
4244
*/

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)