From 1ba3008b49945fad00356ac64748eaa8ea3f977e Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 1 Sep 2013 23:25:28 +0200 Subject: [PATCH] minor fixes --- electrum | 8 ++++---- gui/network_dialog.py | 2 +- lib/simple_config.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/electrum b/electrum index 0e684c6da..6128c35c5 100755 --- a/electrum +++ b/electrum @@ -347,9 +347,9 @@ if __name__ == '__main__': if raw_input("Are you sure you want to continue? (y/n) ") in ['y','Y','yes']: wallet.config.path = ns wallet.seed = '' - wallet.config.set_key('seed', '', True) + wallet.storage.put('seed', '', True) wallet.use_encryption = False - wallet.config.set_key('use_encryption', wallet.use_encryption, True) + wallet.storage.put('use_encryption', wallet.use_encryption, True) for k in wallet.imported_keys.keys(): wallet.imported_keys[k] = '' wallet.config.set_key('imported_keys',wallet.imported_keys, True) print_msg("Done.") @@ -358,12 +358,12 @@ if __name__ == '__main__': elif cmd == 'getconfig': key = args[1] - print_msg(wallet.config.get(key)) + print_msg(config.get(key)) elif cmd == 'setconfig': key, value = args[1:3] if key not in ['seed', 'seed_version', 'master_public_key', 'use_encryption']: - wallet.config.set_key(key, value, True) + config.set_key(key, value, True) print_msg(True) else: print_msg(False) diff --git a/gui/network_dialog.py b/gui/network_dialog.py index b246b7d0b..b197ef374 100644 --- a/gui/network_dialog.py +++ b/gui/network_dialog.py @@ -44,7 +44,7 @@ class NetworkDialog(QDialog): if parent: if interface.is_connected: - status = _("Connected to")+" %s"%(interface.host) + "\n%d "%(parent.wallet.verifier.height)+_("blocks") + status = _("Connected to")+" %s"%(interface.host) + "\n%d "%(parent.wallet.verifier.blockchain.height)+_("blocks") else: status = _("Not connected") server = interface.server diff --git a/lib/simple_config.py b/lib/simple_config.py index 9041650db..4eb263381 100644 --- a/lib/simple_config.py +++ b/lib/simple_config.py @@ -35,7 +35,7 @@ a SimpleConfig instance then reads the wallet file. # init path self.init_path(options) - print "user dir", self.user_dir + print_error( "user dir", self.user_dir) def init_path(self, options):