diff --git a/src/common/dns_utils.cpp b/src/common/dns_utils.cpp index 09541b000..10780dd27 100644 --- a/src/common/dns_utils.cpp +++ b/src/common/dns_utils.cpp @@ -400,7 +400,7 @@ namespace dns_utils std::string address_from_txt_record(const std::string& s) { // make sure the txt record has "oa1:xmr" and find it - auto pos = s.find("oa1:xmr"); + auto pos = s.find("oa1:wow"); if (pos == std::string::npos) return {}; // search from there to find "recipient_address=" @@ -412,14 +412,14 @@ std::string address_from_txt_record(const std::string& s) auto pos2 = s.find(";", pos); if (pos2 != std::string::npos) { - // length of address == 95, we can at least validate that much here - if (pos2 - pos == 95) + // length of address == 97, we can at least validate that much here + if (pos2 - pos == 97) { - return s.substr(pos, 95); + return s.substr(pos, 97); } - else if (pos2 - pos == 106) // length of address == 106 --> integrated address + else if (pos2 - pos == 108) // length of address == 108 --> integrated address { - return s.substr(pos, 106); + return s.substr(pos, 108); } } return {};