diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-02-21 17:37:16 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-02-21 17:38:43 +0000 |
commit | 7c09882a27c44e4101e71c15396c47735cc3097f (patch) | |
tree | bb4b8d0003ad617030b262f749b32e3f613dcf0a /src/common | |
parent | Merge pull request #4988 (diff) | |
download | monero-7c09882a27c44e4101e71c15396c47735cc3097f.tar.xz |
dns_utils: remove MoneroPulse/checkpoints mention in TXT record code
This code is used for more than just these
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/dns_utils.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/dns_utils.cpp b/src/common/dns_utils.cpp index 417b5b4ac..68f583749 100644 --- a/src/common/dns_utils.cpp +++ b/src/common/dns_utils.cpp @@ -514,12 +514,12 @@ bool load_txt_records_from_dns(std::vector<std::string> &good_records, const std if (!avail[cur_index]) { records[cur_index].clear(); - LOG_PRINT_L2("DNSSEC not available for checkpoint update at URL: " << url << ", skipping."); + LOG_PRINT_L2("DNSSEC not available for hostname: " << url << ", skipping."); } if (!valid[cur_index]) { records[cur_index].clear(); - LOG_PRINT_L2("DNSSEC validation failed for checkpoint update at URL: " << url << ", skipping."); + LOG_PRINT_L2("DNSSEC validation failed for hostname: " << url << ", skipping."); } cur_index++; @@ -541,7 +541,7 @@ bool load_txt_records_from_dns(std::vector<std::string> &good_records, const std if (num_valid_records < 2) { - LOG_PRINT_L0("WARNING: no two valid MoneroPulse DNS checkpoint records were received"); + LOG_PRINT_L0("WARNING: no two valid DNS TXT records were received"); return false; } @@ -563,7 +563,7 @@ bool load_txt_records_from_dns(std::vector<std::string> &good_records, const std if (good_records_index < 0) { - LOG_PRINT_L0("WARNING: no two MoneroPulse DNS checkpoint records matched"); + LOG_PRINT_L0("WARNING: no two DNS TXT records matched"); return false; } |