Browse Source

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.
master
SomberNight 2 years ago
parent
commit
b18f9570fc
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/qml/components/wizard/WCImport.qml

2
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()

Loading…
Cancel
Save