Skip to content

Commit

Permalink
Fix incorrect hex value for Signet port
Browse files Browse the repository at this point in the history
  • Loading branch information
jrakibi authored and cdecker committed Feb 16, 2024
1 parent 4c5c53c commit 1fdc018
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bitcoin/chainparams.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-spec/bolt1/pyln/spec/bolt1/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- 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.
Expand Down

0 comments on commit 1fdc018

Please sign in to comment.