mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
bump log level MoneroPulse DNS check
This commit is contained in:
parent
c2e62e58ea
commit
72f18fd058
2 changed files with 4 additions and 4 deletions
|
@ -277,13 +277,13 @@ namespace cryptonote
|
||||||
std::vector<std::string> records;
|
std::vector<std::string> records;
|
||||||
|
|
||||||
// All four MoneroPulse domains have DNSSEC on and valid
|
// All four MoneroPulse domains have DNSSEC on and valid
|
||||||
static const std::vector<std::string> dns_urls = { ""
|
static const std::vector<std::string> dns_urls = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const std::vector<std::string> testnet_dns_urls = { ""
|
static const std::vector<std::string> testnet_dns_urls = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const std::vector<std::string> stagenet_dns_urls = { ""
|
static const std::vector<std::string> stagenet_dns_urls = {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!tools::dns_utils::load_txt_records_from_dns(records, nettype == TESTNET ? testnet_dns_urls : nettype == STAGENET ? stagenet_dns_urls : dns_urls))
|
if (!tools::dns_utils::load_txt_records_from_dns(records, nettype == TESTNET ? testnet_dns_urls : nettype == STAGENET ? stagenet_dns_urls : dns_urls))
|
||||||
|
|
|
@ -553,7 +553,7 @@ bool load_txt_records_from_dns(std::vector<std::string> &good_records, const std
|
||||||
|
|
||||||
if (num_valid_records < 2)
|
if (num_valid_records < 2)
|
||||||
{
|
{
|
||||||
LOG_PRINT_L0("WARNING: no two valid DNS TXT records were received");
|
LOG_PRINT_L2("WARNING: no two valid DNS TXT records were received");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue