This commit is contained in:
thomasv 2012-01-12 14:51:35 +01:00
parent cbf5ada66e
commit 8a61d288c5
1 changed files with 4 additions and 4 deletions

View File

@ -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: