mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-31 09:14:56 +00:00
19 lines
537 B
C
19 lines
537 B
C
#ifndef BITCOIN_CHAINPARAMSSEEDS_H
|
|
#define BITCOIN_CHAINPARAMSSEEDS_H
|
|
/**
|
|
* List of fixed seed nodes for the kevacoin 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 a IPv6 address accordingly.
|
|
*/
|
|
static SeedSpec6 pnSeed6_main[] = {
|
|
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x34,0x26,0xb3,0x80}, 9338}
|
|
};
|
|
|
|
static SeedSpec6 pnSeed6_test[] = {
|
|
|
|
};
|
|
|
|
#endif // BITCOIN_CHAINPARAMSSEEDS_H
|