Browse Source

fix typo: text gui with no wallet

3.0.x
SomberNight 7 years ago
parent
commit
97d45c7c30
  1. 2
      gui/text.py

2
gui/text.py

@ -25,7 +25,7 @@ class ElectrumGui:
self.config = config self.config = config
self.network = daemon.network self.network = daemon.network
storage = WalletStorage(config.get_wallet_path()) storage = WalletStorage(config.get_wallet_path())
if not storage.file_exists: if not storage.file_exists():
print("Wallet not found. try 'electrum create'") print("Wallet not found. try 'electrum create'")
exit() exit()
if storage.is_encrypted(): if storage.is_encrypted():

Loading…
Cancel
Save