correct length of addresses

pull/461/head
wowario 1 year ago
parent 8635db2b19
commit 250a681db6
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -432,13 +432,13 @@ std::string address_from_txt_record(const std::string& s)
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 == 95, 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 == 106 --> integrated address
{ {
return s.substr(pos, 106); return s.substr(pos, 108);
} }
} }
return {}; return {};

Loading…
Cancel
Save