contrib: fix generate-seeds.py to use Dogecoin p2p ports

This commit is contained in:
Patrick Lodder 2021-08-15 03:09:45 +02:00
parent 3bf47e73f3
commit 9569222b7b
No known key found for this signature in database
GPG Key ID: 2D3A345B98D0DC1F
1 changed files with 2 additions and 2 deletions

View File

@ -127,10 +127,10 @@ def main():
g.write(' * IPv4 as well as onion addresses are wrapped inside a IPv6 address accordingly.\n')
g.write(' */\n')
with open(os.path.join(indir,'nodes_main.txt'),'r') as f:
process_nodes(g, f, 'pnSeed6_main', 8333)
process_nodes(g, f, 'pnSeed6_main', 22556)
g.write('\n')
with open(os.path.join(indir,'nodes_test.txt'),'r') as f:
process_nodes(g, f, 'pnSeed6_test', 18333)
process_nodes(g, f, 'pnSeed6_test', 44556)
g.write('#endif // BITCOIN_CHAINPARAMSSEEDS_H\n')
if __name__ == '__main__':