From 9b28ed9ba070c1ee0c8daad21959592542e3023a Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 14 Nov 2014 14:08:28 +0100 Subject: [PATCH] do not require name to create an account --- gui/qt/main_window.py | 1 - lib/wallet.py | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 3d20813cf..77e59f933 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -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() diff --git a/lib/wallet.py b/lib/wallet.py index e5a190cd8..6b772feb1 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -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()