diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-10-25 03:26:36 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-10-25 03:26:36 -0700 |
commit | 48cc4fc326fa916954967580ca49c24044d55754 (patch) | |
tree | 6e7b5e0025e00e3a4e2a6128517dc0d5b57fdda5 /src/qt/bitcoingui.h | |
parent | 356587686cc5027adbd73e3a5b5c4bdf7861cfa3 (diff) | |
parent | 08dd1b7be172f7ea580dc9bdf20ac15ea9a2ed31 (diff) |
Merge pull request #3130 from Diapolo/paymentACK_via_message
Qt: move paymentACK handling to paymentserver
Diffstat (limited to 'src/qt/bitcoingui.h')
-rw-r--r-- | src/qt/bitcoingui.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index e5a92fed93..843d5aa768 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -135,6 +135,7 @@ public slots: @param[in] ret pointer to a bool that will be modified to whether Ok was clicked (modal only) */ void message(const QString &title, const QString &message, unsigned int style, bool *ret = NULL); + /** Asks the user whether to pay the transaction fee or to cancel the transaction. It is currently not possible to pass a return value to another thread through BlockingQueuedConnection, so an indirected pointer is used. @@ -146,7 +147,6 @@ public slots: void askFee(qint64 nFeeRequired, bool *payFee); void handlePaymentRequest(const SendCoinsRecipient& recipient); - void showPaymentACK(const QString& msg); /** Show incoming transaction notification for new transactions. */ void incomingTransaction(const QString& date, int unit, qint64 amount, const QString& type, const QString& address); |