Bitcoin ABC  0.28.12
P2P Digital Currency
dnsseeds.h
Go to the documentation of this file.
1 // Copyright (c) 2021 The Bitcoin developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_DNSSEEDS_H
6 #define BITCOIN_DNSSEEDS_H
7 
8 #include <chainparams.h>
9 
10 #include <string>
11 #include <vector>
12 
14 const std::vector<std::string>
15 GetRandomizedDNSSeeds(const CChainParams &params);
16 
17 #endif // BITCOIN_DNSSEEDS_H
CChainParams defines various tweakable parameters of a given instance of the Bitcoin system.
Definition: chainparams.h:74
const std::vector< std::string > GetRandomizedDNSSeeds(const CChainParams &params)
Return the list of hostnames to look up for DNS seeds.
Definition: dnsseeds.cpp:11