mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-16 05:00:42 +02:00
gui: Update BIP70 support message
This commit is contained in:
parent
a3e810326d
commit
c7f30dbca8
@ -236,7 +236,7 @@ void PaymentServer::handleURIOrFile(const QString& s)
|
|||||||
if (!IsValidDestinationString(recipient.address.toStdString())) {
|
if (!IsValidDestinationString(recipient.address.toStdString())) {
|
||||||
if (uri.hasQueryItem("r")) { // payment request
|
if (uri.hasQueryItem("r")) { // payment request
|
||||||
Q_EMIT message(tr("URI handling"),
|
Q_EMIT message(tr("URI handling"),
|
||||||
tr("Cannot process payment request because BIP70 support was not compiled in.")+
|
tr("Cannot process payment request because BIP70 is not supported.")+
|
||||||
tr("Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored.")+
|
tr("Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored.")+
|
||||||
tr("If you are receiving this error you should request the merchant provide a BIP21 compatible URI."),
|
tr("If you are receiving this error you should request the merchant provide a BIP21 compatible URI."),
|
||||||
CClientUIInterface::ICON_WARNING);
|
CClientUIInterface::ICON_WARNING);
|
||||||
@ -259,7 +259,7 @@ void PaymentServer::handleURIOrFile(const QString& s)
|
|||||||
if (QFile::exists(s)) // payment request file
|
if (QFile::exists(s)) // payment request file
|
||||||
{
|
{
|
||||||
Q_EMIT message(tr("Payment request file handling"),
|
Q_EMIT message(tr("Payment request file handling"),
|
||||||
tr("Cannot process payment request because BIP70 support was not compiled in.")+
|
tr("Cannot process payment request because BIP70 is not supported.")+
|
||||||
tr("Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored.")+
|
tr("Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored.")+
|
||||||
tr("If you are receiving this error you should request the merchant provide a BIP21 compatible URI."),
|
tr("If you are receiving this error you should request the merchant provide a BIP21 compatible URI."),
|
||||||
CClientUIInterface::ICON_WARNING);
|
CClientUIInterface::ICON_WARNING);
|
||||||
|
Loading…
Reference in New Issue
Block a user