OpenAlias: change to wownero

pull/426/head
dsc 2 years ago
parent 51e7a4178e
commit 4fdf8c01cb

@ -400,7 +400,7 @@ namespace dns_utils
std::string address_from_txt_record(const std::string& s) std::string address_from_txt_record(const std::string& s)
{ {
// make sure the txt record has "oa1:xmr" and find it // 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) if (pos == std::string::npos)
return {}; return {};
// search from there to find "recipient_address=" // 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); auto pos2 = s.find(";", pos);
if (pos2 != std::string::npos) if (pos2 != std::string::npos)
{ {
// length of address == 95, we can at least validate that much here // length of address == 97, we can at least validate that much here
if (pos2 - pos == 95) 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 {}; return {};

Loading…
Cancel
Save