From b18f9570fc415569d072132ba96774bd0dc96e84 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 24 Nov 2023 20:48:04 +0000 Subject: [PATCH] qml wizard: fix creating imported wallet from camera: concat with space The parser expects the list of keys/addrs to be whitespace-separated (no commas). Same as line 61. --- electrum/gui/qml/components/wizard/WCImport.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qml/components/wizard/WCImport.qml b/electrum/gui/qml/components/wizard/WCImport.qml index 06238a3b9..b185a1c0d 100644 --- a/electrum/gui/qml/components/wizard/WCImport.qml +++ b/electrum/gui/qml/components/wizard/WCImport.qml @@ -79,7 +79,7 @@ WizardComponent { dialog.onFound.connect(function() { if (verify(dialog.scanData)) { if (import_ta.text != '') - import_ta.text = import_ta.text + ',\n' + import_ta.text = import_ta.text + '\n' import_ta.text = import_ta.text + dialog.scanData } dialog.close()