From df2c1d6ae1ecf6c44d99fc0dd6ac3ca3e8ff83ca Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Mon, 2 Jun 2025 17:14:31 +0200 Subject: [PATCH] qml: no feebump hint if only option is CPFP --- electrum/gui/qml/components/TxDetails.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qml/components/TxDetails.qml b/electrum/gui/qml/components/TxDetails.qml index 12cb2d01a..42f462a2e 100644 --- a/electrum/gui/qml/components/TxDetails.qml +++ b/electrum/gui/qml/components/TxDetails.qml @@ -75,7 +75,7 @@ Pane { : txdetails.isRemoved ? qsTr('This transaction has been replaced or removed and is no longer valid') : txdetails.inMempool ? qsTr('This transaction is still unconfirmed.') + - (txdetails.canBump || txdetails.canCpfp || txdetails.canCancel + (txdetails.canBump || txdetails.canCancel ? txdetails.canCancel ? '\n' + qsTr('You can bump its fee to speed up its confirmation, or cancel this transaction.') : '\n' + qsTr('You can bump its fee to speed up its confirmation.')