tpaymentrequest: don't show PaymentAck to user - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit e1c66488b1c5d81346d5bcd74d307b314964061b DIR parent f7f4fef1560a2763b5994f26d27fdc01cc59becd HTML Author: SomberNight <somber.night@protonmail.com> Date: Wed, 14 Nov 2018 16:33:41 +0100 paymentrequest: don't show PaymentAck to user mainly because the main "merchant" using bip70 is bitpay, and they are failing all the PaymentAcks due to the tx is using RBF... no need to confuse users. follow-up 1686a97ece31aaa1d2c0e6c7042137a5e8a04943 Diffstat: M electrum/gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py t@@ -1667,7 +1667,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): coro = pr.send_payment_and_receive_paymentack(str(tx), refund_address) fut = asyncio.run_coroutine_threadsafe(coro, self.network.asyncio_loop) ack_status, ack_msg = fut.result(timeout=20) - msg += f"\n\nPayment ACK: {ack_status}.\nAck message: {ack_msg}" + self.print_error(f"Payment ACK: {ack_status}. Ack message: {ack_msg}") return status, msg # Capture current TL window; override might be removed on return