Browse Source

fix: wizard 2of2 (cosigning key)

283
ThomasV 11 years ago
parent
commit
c4d10f6d63
  1. 7
      gui/qt/installwizard.py

7
gui/qt/installwizard.py

@ -436,10 +436,11 @@ class InstallWizard(QDialog):
if action == 'create_2of2_2': if action == 'create_2of2_2':
xpub_hot = wallet.master_public_keys.get("m/") xpub_hot = wallet.master_public_keys.get("m/")
xpub = self.multi_mpk_dialog(xpub_hot, 1) r = self.multi_mpk_dialog(xpub_hot, 1)
if not xpub: if not r:
return return
wallet.add_master_public_key("cold/", xpub) xpub_cold = r[0]
wallet.add_master_public_key("cold/", xpub_cold)
wallet.create_account() wallet.create_account()
self.waiting_dialog(wallet.synchronize) self.waiting_dialog(wallet.synchronize)

Loading…
Cancel
Save