You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!IsValidDestinationString(recipient.address.toStdString())) {
236
+
std::string error_msg;
237
+
const CTxDestination dest = DecodeDestination(recipient.address.toStdString(), error_msg);
238
+
239
+
if (!IsValidDestination(dest)) {
237
240
if (uri.hasQueryItem("r")) { // payment request
238
241
Q_EMIT message(tr("URI handling"),
239
242
tr("Cannot process payment request as BIP70 is no longer supported.")+
240
243
tr("Due to discontinued support, you should request the merchant to provide you with a BIP21 compatible URI or use a wallet that does continue to support BIP70."),
0 commit comments