electrum

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

commit 8a61d288c5f57ad8a57582e78684fbf0c29e113d
parent cbf5ada66e90223865a06647a8a362ab856a07c1
Author: thomasv <thomasv@gitorious>
Date:   Thu, 12 Jan 2012 14:51:35 +0100

fix

Diffstat:
Mclient/electrum.py | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/client/electrum.py b/client/electrum.py @@ -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: