Less noise unless -debug is used

This commit is contained in:
Duke
2025-09-24 09:30:33 -04:00
parent e421dfc6a5
commit cb81fc3b95
4 changed files with 14 additions and 7 deletions

View File

@@ -274,7 +274,7 @@ def start_node(i, dirname, extra_args=None, rpchost=None, timewait=None, binary=
devnull.close()
port = extra_args[3]
#port = rpc_port(i)
print("port=%s" % port)
#print("port=%s" % port)
username = rpc_username()
password = rpc_password()
url = "http://%s:%s@%s:%s" % (username, password, rpchost or '127.0.0.1', port[9:])
@@ -283,7 +283,7 @@ def start_node(i, dirname, extra_args=None, rpchost=None, timewait=None, binary=
proxy = AuthServiceProxy(url, timeout=timewait)
else:
proxy = AuthServiceProxy(url)
print("created proxy")
#print("created proxy")
proxy.url = url # store URL on proxy for info
return proxy