fix
This commit is contained in:
@@ -801,12 +801,12 @@ if __name__ == '__main__':
|
|||||||
password = None
|
password = None
|
||||||
print "in order to use wallet encryption, please install pycrypto (sudo easy_install pycrypto)"
|
print "in order to use wallet encryption, please install pycrypto (sudo easy_install pycrypto)"
|
||||||
|
|
||||||
host = raw_input("server (default:%s):"%wallet.host)
|
host = raw_input("server (default:%s):"%wallet.interface.host)
|
||||||
port = raw_input("port (default:%d):"%wallet.port)
|
port = raw_input("port (default:%d):"%wallet.interface.port)
|
||||||
fee = raw_input("fee (default:%f):"%(wallet.fee*1e-8))
|
fee = raw_input("fee (default:%f):"%(wallet.fee*1e-8))
|
||||||
if fee: wallet.fee = float(fee)
|
if fee: wallet.fee = float(fee)
|
||||||
if host: wallet.host = host
|
if host: wallet.interface.host = host
|
||||||
if port: wallet.port = int(port)
|
if port: wallet.interface.port = int(port)
|
||||||
seed = raw_input("if you are restoring an existing wallet, enter the seed. otherwise just press enter: ")
|
seed = raw_input("if you are restoring an existing wallet, enter the seed. otherwise just press enter: ")
|
||||||
wallet.gap_limit = 5
|
wallet.gap_limit = 5
|
||||||
if seed:
|
if seed:
|
||||||
|
|||||||
Reference in New Issue
Block a user