do not require name to create an account

This commit is contained in:
ThomasV 2014-11-14 14:08:28 +01:00
parent c5b47bd513
commit 9b28ed9ba0
2 changed files with 2 additions and 2 deletions

View File

@ -1822,7 +1822,6 @@ class ElectrumWindow(QMainWindow):
if not r: return
name = str(e.text())
if not name: return
self.wallet.create_pending_account(name, password)
self.update_address_tab()

View File

@ -1431,7 +1431,8 @@ class BIP32_HD_Wallet(BIP32_Wallet):
self.next_account = self.get_next_account(password)
self.storage.put('next_account', self.next_account)
next_id, next_xpub, next_address = self.next_account
self.set_label(next_id, name)
if name:
self.set_label(next_id, name)
self.accounts[next_id] = PendingAccount({'pending':next_address})
self.save_accounts()