diff --git a/doc/coding.md b/doc/coding.md index 3581d7deb2d4..8d74fc4d09a9 100644 --- a/doc/coding.md +++ b/doc/coding.md @@ -5,8 +5,7 @@ Please be consistent with the existing coding style. Block style: - bool Function(char* psz, int n) - { + bool Function(char* psz, int n) { // Comment summarising what this section of code does for (int i = 0; i < n; i++) { @@ -65,9 +64,11 @@ Threads - StartNode : Starts other threads. +- ThreadCheckDarkSendPool : Builds and update Masternode list, starts auto-denomination + - ThreadGetMyExternalIP : Determines outside-the-firewall IP address, sends addr message to connected peers when it determines it. -- ThreadSocketHandler : Sends/Receives data from peers on port 8333. +- ThreadSocketHandler : Sends/Receives data from peers on port 9999. - ThreadMessageHandler : Higher-level message handling (sending and receiving). @@ -83,9 +84,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 9998 for connections and services them. -- ThreadBitcoinMiner : Generates bitcoins +- DarkcoinMiner : Generates darkcoins - ThreadMapPort : Universal plug-and-play startup/shutdown