This contains significant rebase / merge / testing work by Naut <lbrynaut@protonmail.com>, Anthony Fieroni <bvbfan@abv.bg> and Brannon King <countprimes@gmail.com>.
18 lines
725 B
C
18 lines
725 B
C
#ifndef BITCOIN_CHAINPARAMSSEEDS_H
|
|
#define BITCOIN_CHAINPARAMSSEEDS_H
|
|
/**
|
|
* List of fixed seed nodes for the bitcoin network
|
|
* AUTOGENERATED by contrib/seeds/generate-seeds.py
|
|
*
|
|
* Each line contains a 16-byte IPv6 address and a port.
|
|
* IPv4 as well as onion addresses are wrapped inside an IPv6 address accordingly.
|
|
*/
|
|
static SeedSpec6 pnSeed6_main[] = {
|
|
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x8a,0x44,0xc6,0x8e}, 9246},
|
|
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x8a,0xc5,0xe0,0xfc}, 9246}
|
|
};
|
|
|
|
static SeedSpec6 pnSeed6_test[] = {
|
|
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x9f,0xcb,0x9a,0xdb}, 19246}
|
|
};
|
|
#endif // BITCOIN_CHAINPARAMSSEEDS_H
|