`make_uri` disallows standalone payment ids

pull/8067/head
woodser 3 years ago
parent e22ec26be4
commit 53be72c08a

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

Loading…
Cancel
Save