diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-01-02 11:17:21 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-01-02 11:18:28 +0100 |
| commit | fe39ce6b23e69391fda962407f2e1241cb2eb366 (patch) | |
| tree | fb836263efcc5f173747779c19809979071b0d1d /src | |
| parent | Merge pull request #5586 (diff) | |
| parent | [Qt] update a translation string and argument counts (diff) | |
| download | discoin-fe39ce6b23e69391fda962407f2e1241cb2eb366.tar.xz discoin-fe39ce6b23e69391fda962407f2e1241cb2eb366.zip | |
Merge pull request #5583
643415a [Qt] update a translation string and argument counts (Philip Kaufmann)
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/paymentserver.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index 3f8e89535..b3dbb693d 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -667,8 +667,7 @@ void PaymentServer::netRequestFinished(QNetworkReply* reply) // BIP70 DoS protection if (reply->size() > BIP70_MAX_PAYMENTREQUEST_SIZE) { - QString msg = tr("Payment request %2 is too large (%3 bytes, allowed %4 bytes).") - .arg(__func__) + QString msg = tr("Payment request %1 is too large (%2 bytes, allowed %3 bytes).") .arg(reply->request().url().toString()) .arg(reply->size()) .arg(BIP70_MAX_PAYMENTREQUEST_SIZE); |