diff --git a/src/checkpoints/checkpoints.cpp b/src/checkpoints/checkpoints.cpp index d12cc1f6d..e58176b29 100755 --- a/src/checkpoints/checkpoints.cpp +++ b/src/checkpoints/checkpoints.cpp @@ -222,10 +222,7 @@ bool checkpoints::load_checkpoints_from_json(const std::string &json_hashfile_fu }; - static const std::vector stagenet_dns_urls = { "stagenetpoints.moneropulse.se" - , "stagenetpoints.moneropulse.org" - , "stagenetpoints.moneropulse.net" - , "stagenetpoints.moneropulse.co" + static const std::vector 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)) diff --git a/src/common/dns_utils.cpp b/src/common/dns_utils.cpp index 33f60bc3c..d4f32a601 100644 --- a/src/common/dns_utils.cpp +++ b/src/common/dns_utils.cpp @@ -505,7 +505,7 @@ bool load_txt_records_from_dns(std::vector &good_records, const std if (num_valid_records < 2) { - LOG_PRINT_L0("WARNING: no two valid MoneroPulse DNS checkpoint records were received"); + LOG_PRINT_L2("WARNING: no two valid Wownero DNS checkpoint records were received"); return false; } @@ -527,7 +527,7 @@ bool load_txt_records_from_dns(std::vector &good_records, const std if (good_records_index < 0) { - LOG_PRINT_L0("WARNING: no two MoneroPulse DNS checkpoint records matched"); + LOG_PRINT_L2("WARNING: no two Wownero DNS checkpoint records matched"); return false; } diff --git a/src/common/updates.cpp b/src/common/updates.cpp index 9eb402e0b..38d2f1f99 100644 --- a/src/common/updates.cpp +++ b/src/common/updates.cpp @@ -44,12 +44,8 @@ namespace tools MDEBUG("Checking updates for " << buildtag << " " << software); - // All four MoneroPulse domains have DNSSEC on and valid + // All four Wownero domains have DNSSEC on and valid static const std::vector dns_urls = { - "updates.moneropulse.org", - "updates.moneropulse.net", - "updates.moneropulse.co", - "updates.moneropulse.se" }; if (!tools::dns_utils::load_txt_records_from_dns(records, dns_urls)) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 62c9e10f9..fafacba40 100755 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -10495,7 +10495,7 @@ uint64_t wallet2::get_segregation_fork_height() const static const bool use_dns = true; if (use_dns) { - // All four MoneroPulse domains have DNSSEC on and valid + // All four Wownero domains have DNSSEC on and valid static const std::vector dns_urls = { };