aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-01-02 11:17:21 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-01-02 11:18:28 +0100
commitfe39ce6b23e69391fda962407f2e1241cb2eb366 (patch)
treefb836263efcc5f173747779c19809979071b0d1d /src
parent48ea5e0ea0dc31696fb1c4f6e5e78e91145c8dd7 (diff)
parent643415aade0dae528098df2d822288ba0c5f6ce2 (diff)
downloadbitcoin-fe39ce6b23e69391fda962407f2e1241cb2eb366.tar.xz
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 3f8e89535e..b3dbb693d7 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);