diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-08-01 23:40:19 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-08-02 10:51:43 +0200 |
commit | d3d946a294988ca3ab2b2c8848da5b393fbbcf42 (patch) | |
tree | 58dd368b777a60f08b1e6d11f79c5cf2ad19e600 /src/qt/paymentserver.h | |
parent | 659c096134080034b5a5cdce4bdd8cae91632f63 (diff) |
Pass SendCoinsRecipient (208 bytes) by const reference
Diffstat (limited to 'src/qt/paymentserver.h')
-rw-r--r-- | src/qt/paymentserver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/paymentserver.h b/src/qt/paymentserver.h index 7c6d4507fe..b43b3f9821 100644 --- a/src/qt/paymentserver.h +++ b/src/qt/paymentserver.h @@ -113,7 +113,7 @@ public Q_SLOTS: void uiReady(); // Submit Payment message to a merchant, get back PaymentACK: - void fetchPaymentACK(CWallet* wallet, SendCoinsRecipient recipient, QByteArray transaction); + void fetchPaymentACK(CWallet* wallet, const SendCoinsRecipient& recipient, QByteArray transaction); // Handle an incoming URI, URI with local file scheme or file void handleURIOrFile(const QString& s); |