aboutsummaryrefslogtreecommitdiff
path: root/doc/developer-notes.md
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2018-01-20 18:35:31 +0000
committerRoss Nicoll <[email protected]>2019-03-25 05:36:12 +0000
commit731b7a75c2bba4d4ba5a213ca5235ac334a998b0 (patch)
tree99ab6f8e5a3bc0efa17b14fb6d69d623dd2edf12 /doc/developer-notes.md
parentRename and update man pages (#1451) (diff)
downloaddiscoin-731b7a75c2bba4d4ba5a213ca5235ac334a998b0.tar.xz
discoin-731b7a75c2bba4d4ba5a213ca5235ac334a998b0.zip
Update documentation to match 1.10 (#1436)
Diffstat (limited to 'doc/developer-notes.md')
-rw-r--r--doc/developer-notes.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md
index 3a7e4f73b..2cea300b8 100644
--- a/doc/developer-notes.md
+++ b/doc/developer-notes.md
@@ -128,7 +128,7 @@ to see it.
**testnet and regtest modes**
-Run with the -testnet option to run with "play bitcoins" on the test network, if you
+Run with the -testnet option to run with "play dogecoins" on the test network, if you
are testing multi-machine code that needs to operate across the internet.
If you are testing something that can run on one machine, run with the -regtest option.
@@ -137,7 +137,7 @@ that run in -regtest mode.
**DEBUG_LOCKORDER**
-Bitcoin Core is a multithreaded application, and deadlocks or other multithreading bugs
+Dogecoin Core is a multithreaded application, and deadlocks or other multithreading bugs
can be very difficult to track down. Compiling with -DDEBUG_LOCKORDER (configure
CXXFLAGS="-DDEBUG_LOCKORDER -g") inserts run-time checks to keep track of which locks
are held, and adds warnings to the debug.log file if inconsistencies are detected.
@@ -172,7 +172,7 @@ Threads
- ThreadMapPort : Universal plug-and-play startup/shutdown
-- ThreadSocketHandler : Sends/Receives data from peers on port 8333.
+- ThreadSocketHandler : Sends/Receives data from peers on port 22556.
- ThreadOpenAddedConnections : Opens network connections to added nodes.
@@ -184,9 +184,9 @@ Threads
- ThreadFlushWalletDB : Close the wallet.dat file if it hasn't been used in 500ms.
-- ThreadRPCServer : Remote procedure call handler, listens on port 8332 for connections and services them.
+- ThreadRPCServer : Remote procedure call handler, listens on port 22555 for connections and services them.
-- BitcoinMiner : Generates bitcoins (if wallet is enabled).
+- DogecoinMiner : Generates dogecoins (if wallet is enabled).
- Shutdown : Does an orderly shutdown of everything.
@@ -490,7 +490,7 @@ Git and GitHub tips
[remote "upstream-pull"]
fetch = +refs/pull/*:refs/remotes/upstream-pull/*
- url = [email protected]:bitcoin/bitcoin.git
+ url = [email protected]:dogecoin/dogecoin.git
This will add an `upstream-pull` remote to your git repository, which can be fetched using `git fetch --all`
or `git fetch upstream-pull`. Afterwards, you can use `upstream-pull/NUMBER/head` in arguments to `git show`,