electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 1afb64420385e218c6905a7095757e90c468feba
parent 21e4a30371c849d5df037aaf746ef886afd37896
Author: Neil Booth <kyuupichan@gmail.com>
Date:   Wed, 23 Dec 2015 13:42:35 +0900

Fix call to get_wallet_folder

Diffstat:
Mgui/qt/main_window.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -320,7 +320,7 @@ class ElectrumWindow(QMainWindow, PrintError): self.wallet.synchronize() def open_wallet(self): - wallet_folder = self.gui_object.get_wallet_folder() + wallet_folder = self.get_wallet_folder() filename = unicode(QFileDialog.getOpenFileName(self, "Select your wallet file", wallet_folder)) if not filename: return