diff options
| author | Philip Kaufmann <[email protected]> | 2014-12-31 12:03:00 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-12-31 12:03:00 +0100 |
| commit | 643415aade0dae528098df2d822288ba0c5f6ce2 (patch) | |
| tree | bc57f465165ff20ab56ff827a2cec5c6e9339692 /src/qt/paymentserver.cpp | |
| parent | Merge pull request #5499 (diff) | |
| download | discoin-643415aade0dae528098df2d822288ba0c5f6ce2.tar.xz discoin-643415aade0dae528098df2d822288ba0c5f6ce2.zip | |
[Qt] update a translation string and argument counts
Diffstat (limited to 'src/qt/paymentserver.cpp')
| -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); |