aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2014-12-31 12:03:00 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-01-02 11:20:51 +0100
commit50891ad080f34e3c3b053c2440332e1a1fd35082 (patch)
tree9804c0841aae10bb9817aa4319152689c2c36281
parent9241f7a7c1259379c667a8fbd22fd0d929b335b1 (diff)
downloadbitcoin-50891ad080f34e3c3b053c2440332e1a1fd35082.tar.xz
[Qt] update a translation string and argument counts
Rebased-From: 643415aade0dae528098df2d822288ba0c5f6ce2 Github-Pull: #5583
-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 bd3dab41a8..0f8f6f0ce8 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);