correct length of addresses

This commit is contained in:
wowario 2023-01-31 10:11:03 +03:00
parent 0901cd95c9
commit 3709b2684b
No known key found for this signature in database
GPG Key ID: 793504B449C69220
1 changed files with 4 additions and 4 deletions

View File

@ -432,13 +432,13 @@ std::string address_from_txt_record(const std::string& s)
if (pos2 != std::string::npos)
{
// 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 {};