From 80a16e137756afa099563a3d1f9f2a26c1f8a647 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 5 Apr 2023 11:50:54 +0200 Subject: [PATCH] fix typo (the error was silent) --- electrum/gui/qml/components/Channels.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qml/components/Channels.qml b/electrum/gui/qml/components/Channels.qml index 426c639d1..13f3cef92 100644 --- a/electrum/gui/qml/components/Channels.qml +++ b/electrum/gui/qml/components/Channels.qml @@ -139,7 +139,7 @@ Pane { FlatButton { Layout.fillWidth: true Layout.preferredWidth: 1 - enabled: Daemon.currentWallet.confirmedBalance.satInt > 0 + enabled: Daemon.currentWallet.confirmedBalance.satsInt > 0 text: qsTr('Open Channel') onClicked: { var dialog = openChannelDialog.createObject(root)