Skip to content

Commit

Permalink
Update links
Browse files Browse the repository at this point in the history
  • Loading branch information
LabyrinthCore committed Nov 15, 2022
1 parent 187c86a commit 3906cac
Show file tree
Hide file tree
Showing 16 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Labyrinth Core integration/staging tree
=====================================

https://labyrinthcore.org
https://labyrinthcore.com

What is Labyrinth?
----------------
Expand Down
2 changes: 1 addition & 1 deletion build_msvc/labyrinth_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@
#define PACKAGE_TARNAME "labyrinth"

/* Define to the home page for this package. */
#define PACKAGE_URL "https://labyrinthcore.org/"
#define PACKAGE_URL "https://labyrinthcore.com/"

/* Define to the version of this package. */
#define PACKAGE_VERSION "0.21.1"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2022)
define(_COPYRIGHT_HOLDERS,[The %s developers])
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Labyrinth Core]])
AC_INIT([Labyrinth Core],m4_join([.], _CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MINOR, _CLIENT_VERSION_REVISION, m4_if(_CLIENT_VERSION_BUILD, [0], [], _CLIENT_VERSION_BUILD))m4_if(_CLIENT_VERSION_RC, [0], [], [rc]_CLIENT_VERSION_RC),[https://github.com/labyrinth/labyrinth/issues],[labyrinth],[https://labyrinthcore.org/])
AC_INIT([Labyrinth Core],m4_join([.], _CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MINOR, _CLIENT_VERSION_REVISION, m4_if(_CLIENT_VERSION_BUILD, [0], [], _CLIENT_VERSION_BUILD))m4_if(_CLIENT_VERSION_RC, [0], [], [rc]_CLIENT_VERSION_RC),[https://github.com/labyrinth/labyrinth/issues],[labyrinth],[https://labyrinthcore.com/])
AC_CONFIG_SRCDIR([src/validation.cpp])
AC_CONFIG_HEADERS([src/config/labyrinth-config.h])
AC_CONFIG_AUX_DIR([build-aux])
Expand Down
2 changes: 1 addition & 1 deletion depends/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ NO_WALLET ?=
NO_ZMQ ?=
NO_UPNP ?=
MULTIPROCESS ?=
FALLBACK_DOWNLOAD_PATH ?= https://labyrinthcore.org/depends-sources
FALLBACK_DOWNLOAD_PATH ?= https://labyrinthcore.com/depends-sources

BUILD = $(shell ./config.guess)
HOST ?= $(BUILD)
Expand Down
4 changes: 2 additions & 2 deletions doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Setup
---------------------
Labyrinth Core is the original Labyrinth client and it builds the backbone of the network. It downloads and, by default, stores the entire history of Labyrinth transactions, which requires a few hundred gigabytes of disk space. Depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more.

To download Labyrinth Core, visit [labyrinthcore.org](https://labyrinthcore.org/en/download/).
To download Labyrinth Core, visit [labyrinthcore.com](https://labyrinthcore.com/en/download/).

Running
---------------------
Expand Down Expand Up @@ -53,7 +53,7 @@ The Labyrinth repo's [root README](/README.md) contains relevant information on
- [Productivity Notes](productivity.md)
- [Release Notes](release-notes.md)
- [Release Process](release-process.md)
- [Source Code Documentation (External Link)](https://doxygen.labyrinthcore.org/)
- [Source Code Documentation (External Link)](https://doxygen.labyrinthcore.com/)
- [Translation Process](translation_process.md)
- [Translation Strings Policy](translation_strings_policy.md)
- [JSON-RPC Interface](JSON-RPC-interface.md)
Expand Down
2 changes: 1 addition & 1 deletion doc/README_doxygen.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ with no central authority: managing transactions and issuing money are carried o

The software is a community-driven open source project, released under the MIT license.

See https://github.com/labyrinth/labyrinth and https://labyrinthcore.org/ for further information about the project.
See https://github.com/labyrinth/labyrinth and https://labyrinthcore.com/ for further information about the project.

\section Navigation
Use <a href="modules.html"><code>Modules</code></a>, <a href="namespaces.html"><code>Namespaces</code></a>, <a href="classes.html"><code>Classes</code></a>, or <a href="files.html"><code>Files</code></a> at the top of the page to start navigating the code.
Expand Down
28 changes: 14 additions & 14 deletions doc/developer-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -423,51 +423,51 @@ and its `cs_KeyStore` lock for example).
Threads
-------

- [Main thread (`labyrinthd`)](https://doxygen.labyrinthcore.org/labyrinthd_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97)
- [Main thread (`labyrinthd`)](https://doxygen.labyrinthcore.com/labyrinthd_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97)
: Started from `main()` in `labyrinthd.cpp`. Responsible for starting up and
shutting down the application.

- [ThreadImport (`b-loadblk`)](https://doxygen.labyrinthcore.org/init_8cpp.html#ae9e290a0e829ec0198518de2eda579d1)
- [ThreadImport (`b-loadblk`)](https://doxygen.labyrinthcore.com/init_8cpp.html#ae9e290a0e829ec0198518de2eda579d1)
: Loads blocks from `blk*.dat` files or `-loadblock=<file>` on startup.

- [ThreadScriptCheck (`b-scriptch.x`)](https://doxygen.labyrinthcore.org/validation_8cpp.html#a925a33e7952a157922b0bbb8dab29a20)
- [ThreadScriptCheck (`b-scriptch.x`)](https://doxygen.labyrinthcore.com/validation_8cpp.html#a925a33e7952a157922b0bbb8dab29a20)
: Parallel script validation threads for transactions in blocks.

- [ThreadHTTP (`b-http`)](https://doxygen.labyrinthcore.org/httpserver_8cpp.html#abb9f6ea8819672bd9a62d3695070709c)
- [ThreadHTTP (`b-http`)](https://doxygen.labyrinthcore.com/httpserver_8cpp.html#abb9f6ea8819672bd9a62d3695070709c)
: Libevent thread to listen for RPC and REST connections.

- [HTTP worker threads(`b-httpworker.x`)](https://doxygen.labyrinthcore.org/httpserver_8cpp.html#aa6a7bc27265043bc0193220c5ae3a55f)
- [HTTP worker threads(`b-httpworker.x`)](https://doxygen.labyrinthcore.com/httpserver_8cpp.html#aa6a7bc27265043bc0193220c5ae3a55f)
: Threads to service RPC and REST requests.

- [Indexer threads (`b-txindex`, etc)](https://doxygen.labyrinthcore.org/class_base_index.html#a96a7407421fbf877509248bbe64f8d87)
- [Indexer threads (`b-txindex`, etc)](https://doxygen.labyrinthcore.com/class_base_index.html#a96a7407421fbf877509248bbe64f8d87)
: One thread per indexer.

- [SchedulerThread (`b-scheduler`)](https://doxygen.labyrinthcore.org/class_c_scheduler.html#a14d2800815da93577858ea078aed1fba)
- [SchedulerThread (`b-scheduler`)](https://doxygen.labyrinthcore.com/class_c_scheduler.html#a14d2800815da93577858ea078aed1fba)
: Does asynchronous background tasks like dumping wallet contents, dumping
addrman and running asynchronous validationinterface callbacks.

- [TorControlThread (`b-torcontrol`)](https://doxygen.labyrinthcore.org/torcontrol_8cpp.html#a4faed3692d57a0d7bdbecf3b37f72de0)
- [TorControlThread (`b-torcontrol`)](https://doxygen.labyrinthcore.com/torcontrol_8cpp.html#a4faed3692d57a0d7bdbecf3b37f72de0)
: Libevent thread for tor connections.

- Net threads:

- [ThreadMessageHandler (`b-msghand`)](https://doxygen.labyrinthcore.org/class_c_connman.html#aacdbb7148575a31bb33bc345e2bf22a9)
- [ThreadMessageHandler (`b-msghand`)](https://doxygen.labyrinthcore.com/class_c_connman.html#aacdbb7148575a31bb33bc345e2bf22a9)
: Application level message handling (sending and receiving). Almost
all net_processing and validation logic runs on this thread.

- [ThreadDNSAddressSeed (`b-dnsseed`)](https://doxygen.labyrinthcore.org/class_c_connman.html#aa7c6970ed98a4a7bafbc071d24897d13)
- [ThreadDNSAddressSeed (`b-dnsseed`)](https://doxygen.labyrinthcore.com/class_c_connman.html#aa7c6970ed98a4a7bafbc071d24897d13)
: Loads addresses of peers from the DNS.

- [ThreadMapPort (`b-upnp`)](https://doxygen.labyrinthcore.org/net_8cpp.html#a63f82a71c4169290c2db1651a9bbe249)
- [ThreadMapPort (`b-upnp`)](https://doxygen.labyrinthcore.com/net_8cpp.html#a63f82a71c4169290c2db1651a9bbe249)
: Universal plug-and-play startup/shutdown.

- [ThreadSocketHandler (`b-net`)](https://doxygen.labyrinthcore.org/class_c_connman.html#a765597cbfe99c083d8fa3d61bb464e34)
- [ThreadSocketHandler (`b-net`)](https://doxygen.labyrinthcore.com/class_c_connman.html#a765597cbfe99c083d8fa3d61bb464e34)
: Sends/Receives data from peers on port 8333.

- [ThreadOpenAddedConnections (`b-addcon`)](https://doxygen.labyrinthcore.org/class_c_connman.html#a0b787caf95e52a346a2b31a580d60a62)
- [ThreadOpenAddedConnections (`b-addcon`)](https://doxygen.labyrinthcore.com/class_c_connman.html#a0b787caf95e52a346a2b31a580d60a62)
: Opens network connections to added nodes.

- [ThreadOpenConnections (`b-opencon`)](https://doxygen.labyrinthcore.org/class_c_connman.html#a55e9feafc3bab78e5c9d408c207faa45)
- [ThreadOpenConnections (`b-opencon`)](https://doxygen.labyrinthcore.com/class_c_connman.html#a55e9feafc3bab78e5c9d408c207faa45)
: Initiates new connections to peers.

Ignoring IDE/editor files
Expand Down
2 changes: 1 addition & 1 deletion doc/man/labyrinth-cli.1
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Use the test chain. Equivalent to \fB\-chain\fR=\fI\,test\/\fR.
Copyright (C) 2009-2020 The Bitcoin Core developers

Please contribute if you find Labyrinth Core useful. Visit
<https://labyrinthcore.org/> for further information about the software.
<https://labyrinthcore.com/> for further information about the software.
The source code is available from <https://github.com/labyrinth/labyrinth>.

This is experimental software.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/labyrinth-qt.1
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ Show splash screen on startup (default: 1)
Copyright (C) 2009-2020 The Bitcoin Core developers

Please contribute if you find Labyrinth Core useful. Visit
<https://labyrinthcore.org/> for further information about the software.
<https://labyrinthcore.com/> for further information about the software.
The source code is available from <https://github.com/labyrinth/labyrinth>.

This is experimental software.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/labyrinth-tx.1
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Set register NAME to given JSON\-STRING
Copyright (C) 2009-2020 The Bitcoin Core developers

Please contribute if you find Labyrinth Core useful. Visit
<https://labyrinthcore.org/> for further information about the software.
<https://labyrinthcore.com/> for further information about the software.
The source code is available from <https://github.com/labyrinth/labyrinth>.

This is experimental software.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/labyrinth-wallet.1
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Attempt to recover private keys from a corrupt wallet. Warning:
Copyright (C) 2009-2020 The Bitcoin Core developers

Please contribute if you find Labyrinth Core useful. Visit
<https://labyrinthcore.org/> for further information about the software.
<https://labyrinthcore.com/> for further information about the software.
The source code is available from <https://github.com/labyrinth/labyrinth>.

This is experimental software.
Expand Down
2 changes: 1 addition & 1 deletion doc/man/labyrinthd.1
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ Accept command line and JSON\-RPC commands
Copyright (C) 2009-2020 The Bitcoin Core developers

Please contribute if you find Labyrinth Core useful. Visit
<https://labyrinthcore.org/> for further information about the software.
<https://labyrinthcore.com/> for further information about the software.
The source code is available from <https://github.com/labyrinth/labyrinth>.

This is experimental software.
Expand Down
8 changes: 4 additions & 4 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ class CMainParams : public CChainParams {
assert(genesis.hashMerkleRoot == uint256S("0xb5cfc9a2963397f55992c7465f4b44961c2ab8b44ea7c8d2608c3e1ad417dfc1"));
assert(genesis.mix_hash == uint256S("0xfce0ae9233d6ff6c4930784749395684e29c3257d1b72f9e9824ab680ccf5d0d"));

vSeeds.emplace_back("dns-primary-mainnet.labyrinthcore.org");
vSeeds.emplace_back("dns-secondary-mainnet.labyrinthcore.org");
vSeeds.emplace_back("dns-primary-mainnet.labyrinthcore.com");
vSeeds.emplace_back("dns-secondary-mainnet.labyrinthcore.com");

base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,76);
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,26);
Expand Down Expand Up @@ -222,8 +222,8 @@ class CTestNetParams : public CChainParams {
vFixedSeeds.clear();
vSeeds.clear();

vSeeds.emplace_back("dns-primary-testnet.labyrinthcore.org");
vSeeds.emplace_back("dns-secondary-testnet.labyrinthcore.org");
vSeeds.emplace_back("dns-primary-testnet.labyrinthcore.com");
vSeeds.emplace_back("dns-secondary-testnet.labyrinthcore.com");

base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1,66);
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1,53);
Expand Down
2 changes: 1 addition & 1 deletion src/secp256k1/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Reporting a Vulnerability

To report security issues send an email to secp256k1-security@labyrinthcore.org (not for support).
To report security issues send an email to secp256k1-security@labyrinthcore.com (not for support).

The following keys may be used to communicate sensitive information to developers:

Expand Down
8 changes: 4 additions & 4 deletions src/test/netbase_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ bool static TestSplitHost(std::string test, std::string host, int port)

BOOST_AUTO_TEST_CASE(netbase_splithost)
{
BOOST_CHECK(TestSplitHost("www.labyrinthcore.org", "www.labyrinthcore.org", -1));
BOOST_CHECK(TestSplitHost("[www.labyrinthcore.org]", "www.labyrinthcore.org", -1));
BOOST_CHECK(TestSplitHost("www.labyrinthcore.org:80", "www.labyrinthcore.org", 80));
BOOST_CHECK(TestSplitHost("[www.labyrinthcore.org]:80", "www.labyrinthcore.org", 80));
BOOST_CHECK(TestSplitHost("www.labyrinthcore.com", "www.labyrinthcore.com", -1));
BOOST_CHECK(TestSplitHost("[www.labyrinthcore.com]", "www.labyrinthcore.com", -1));
BOOST_CHECK(TestSplitHost("www.labyrinthcore.com:80", "www.labyrinthcore.com", 80));
BOOST_CHECK(TestSplitHost("[www.labyrinthcore.com]:80", "www.labyrinthcore.com", 80));
BOOST_CHECK(TestSplitHost("127.0.0.1", "127.0.0.1", -1));
BOOST_CHECK(TestSplitHost("127.0.0.1:8333", "127.0.0.1", 8333));
BOOST_CHECK(TestSplitHost("[127.0.0.1]", "127.0.0.1", -1));
Expand Down
2 changes: 1 addition & 1 deletion test/get_previous_releases.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def download_binary(tag, args) -> int:
match.group(1), match.group(2))
tarball = 'labyrinth-{tag}-{platform}.tar.gz'.format(
tag=tag[1:], platform=args.platform)
tarballUrl = 'https://labyrinthcore.org/{bin_path}/{tarball}'.format(
tarballUrl = 'https://labyrinthcore.com/{bin_path}/{tarball}'.format(
bin_path=bin_path, tarball=tarball)

print('Fetching: {tarballUrl}'.format(tarballUrl=tarballUrl))
Expand Down

0 comments on commit 3906cac

Please sign in to comment.