aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2015-01-02 11:17:21 +0100
committerWladimir J. van der Laan <[email protected]>2015-01-02 11:18:28 +0100
commitfe39ce6b23e69391fda962407f2e1241cb2eb366 (patch)
treefb836263efcc5f173747779c19809979071b0d1d /src
parentMerge pull request #5586 (diff)
parent[Qt] update a translation string and argument counts (diff)
downloaddiscoin-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.cpp3
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);