Fix incorrect hex value for Signet port

This commit is contained in:
jrakibi 2024-02-14 22:03:54 +01:00 committed by Christian Decker
parent 4c5c53cac7
commit 1fdc018b74
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ struct chainparams {
*
* - Bitcoin mainet with port number 9735 or the corresponding hexadecimal `0x2607`;
* - Bitcoin testnet with port number 19735 (`0x4D17`);
* - Bitcoin signet with port number 39735 (`0xF87`).
* - Bitcoin signet with port number 39735 (`0x9B37`).
*/
const int ln_port;
const char *cli;

View File

@ -10,7 +10,7 @@ The default TCP port depends on the network used. The most common networks are:
- Bitcoin mainet with port number 9735 or the corresponding hexadecimal `0x2607`;
- Bitcoin testnet with port number 19735 (`0x4D17`);
- Bitcoin signet with port number 39735 (`0xF87`).
- Bitcoin signet with port number 39735 (`0x9B37`).
The Unicode code point for LIGHTNING <sup>[1](#reference-1)</sup>, and the port convention try to follow the Bitcoin Core convention.