From 537dbab52238a151d02ad41de48c70defa0f7f6b Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Wed, 6 Jul 2022 19:22:19 +0200 Subject: [PATCH] fix canRbf value in Send.qml --- electrum/gui/qml/components/Send.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qml/components/Send.qml b/electrum/gui/qml/components/Send.qml index 96d0aa313..972b76a38 100644 --- a/electrum/gui/qml/components/Send.qml +++ b/electrum/gui/qml/components/Send.qml @@ -245,7 +245,7 @@ Pane { title: qsTr('Confirm Payment') finalizer: TxFinalizer { wallet: Daemon.currentWallet - canRbf: True + canRbf: true } } }