tfix - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 8a61d288c5f57ad8a57582e78684fbf0c29e113d
DIR parent cbf5ada66e90223865a06647a8a362ab856a07c1
HTML Author: thomasv <thomasv@gitorious>
Date: Thu, 12 Jan 2012 14:51:35 +0100
fix
Diffstat:
M client/electrum.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
DIR diff --git a/client/electrum.py b/client/electrum.py
t@@ -801,12 +801,12 @@ if __name__ == '__main__':
password = None
print "in order to use wallet encryption, please install pycrypto (sudo easy_install pycrypto)"
- host = raw_input("server (default:%s):"%wallet.host)
- port = raw_input("port (default:%d):"%wallet.port)
+ host = raw_input("server (default:%s):"%wallet.interface.host)
+ port = raw_input("port (default:%d):"%wallet.interface.port)
fee = raw_input("fee (default:%f):"%(wallet.fee*1e-8))
if fee: wallet.fee = float(fee)
- if host: wallet.host = host
- if port: wallet.port = int(port)
+ if host: wallet.interface.host = host
+ if port: wallet.interface.port = int(port)
seed = raw_input("if you are restoring an existing wallet, enter the seed. otherwise just press enter: ")
wallet.gap_limit = 5
if seed: