1
0

command line: wait until daemon is connected

This commit is contained in:
ThomasV
2014-07-25 13:30:27 +02:00
parent 3e6f903da3
commit 2120b1a573
4 changed files with 12 additions and 3 deletions

View File

@@ -113,6 +113,11 @@ def run_command(cmd, password=None, args=None):
s = daemon_socket()
network = NetworkProxy(s, config)
network.start()
while network.is_connecting():
time.sleep(0.1)
if not network.is_connected():
print_msg("daemon is not connected")
sys.exit(1)
if wallet:
wallet.start_threads(network)
wallet.update()