Browse Source

qml: handle importChannelBackupFailed in WalletMainView

error was not being shown when scanning/pasting channel backup from Send screen
master
SomberNight 2 years ago
parent
commit
d663d92424
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 4
      electrum/gui/qml/components/WalletMainView.qml

4
electrum/gui/qml/components/WalletMainView.qml

@ -312,6 +312,10 @@ Item {
})
dialog.open()
}
function onImportChannelBackupFailed(message) {
var dialog = app.messageDialog.createObject(app, { title: qsTr('Error'), text: message })
dialog.open()
}
}
Component {

Loading…
Cancel
Save