aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2023-06-27 11:33:45 -0500
committerluigi1111 <luigi1111w@gmail.com>2023-06-27 11:33:45 -0500
commit3d9f378ed450b5d088f19d770813b6f751b9fe3e (patch)
tree4d524258425cc6cc8d5d8e71740c221c1a55309b
parentMerge pull request #8795 (diff)
parentMessage about DNS_PUBLIC to help users with issue #8452 (diff)
downloadmonero-3d9f378ed450b5d088f19d770813b6f751b9fe3e.tar.xz
Merge pull request #8804
ca6c42a Message about DNS_PUBLIC to help users with issue #8452 (OrvilleRed)
-rw-r--r--src/common/dns_utils.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/dns_utils.cpp b/src/common/dns_utils.cpp
index 324566afd..ce4555ae3 100644
--- a/src/common/dns_utils.cpp
+++ b/src/common/dns_utils.cpp
@@ -340,6 +340,7 @@ std::vector<std::string> DNSResolver::get_record(const std::string& url, int rec
dnssec_valid = result->secure && !result->bogus;
if (dnssec_available && !dnssec_valid)
MWARNING("Invalid DNSSEC " << get_record_name(record_type) << " record signature for " << url << ": " << result->why_bogus);
+ MWARNING("Possibly your DNS service is problematic. You can have monerod use an alternate via env variable DNS_PUBLIC. Example: DNS_PUBLIC=tcp://9.9.9.9");
if (result->havedata)
{
for (size_t i=0; result->data[i] != NULL; i++)