Skip to content

Commit c7f30db

Browse files
committed
gui: Update BIP70 support message
1 parent a3e8103 commit c7f30db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/qt/paymentserver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ void PaymentServer::handleURIOrFile(const QString& s)
236236
if (!IsValidDestinationString(recipient.address.toStdString())) {
237237
if (uri.hasQueryItem("r")) { // payment request
238238
Q_EMIT message(tr("URI handling"),
239-
tr("Cannot process payment request because BIP70 support was not compiled in.")+
239+
tr("Cannot process payment request because BIP70 is not supported.")+
240240
tr("Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored.")+
241241
tr("If you are receiving this error you should request the merchant provide a BIP21 compatible URI."),
242242
CClientUIInterface::ICON_WARNING);
@@ -259,7 +259,7 @@ void PaymentServer::handleURIOrFile(const QString& s)
259259
if (QFile::exists(s)) // payment request file
260260
{
261261
Q_EMIT message(tr("Payment request file handling"),
262-
tr("Cannot process payment request because BIP70 support was not compiled in.")+
262+
tr("Cannot process payment request because BIP70 is not supported.")+
263263
tr("Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored.")+
264264
tr("If you are receiving this error you should request the merchant provide a BIP21 compatible URI."),
265265
CClientUIInterface::ICON_WARNING);

0 commit comments

Comments
 (0)