Merge pull request #8067

53be72c make_uri disallows standalone payment ids (woodser)
pull/8139/head
luigi1111 2 years ago
commit 3ed0cc6e20
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -13728,12 +13728,8 @@ std::string wallet2::make_uri(const std::string &address, const std::string &pay
if (!payment_id.empty())
{
crypto::hash pid32;
if (!wallet2::parse_long_payment_id(payment_id, pid32))
{
error = "Invalid payment id";
return std::string();
}
error = "Standalone payment id deprecated, use integrated address instead";
return std::string();
}
std::string uri = "monero:" + address;

Loading…
Cancel
Save