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.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user