make_uri disallows standalone payment ids

This commit is contained in:
woodser 2021-11-30 09:28:45 -05:00
parent e22ec26be4
commit 53be72c08a

View File

@ -13728,13 +13728,9 @@ 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))
{
error = "Invalid payment id";
return std::string(); return std::string();
} }
}
std::string uri = "monero:" + address; std::string uri = "monero:" + address;
unsigned int n_fields = 0; unsigned int n_fields = 0;