diff options
| author | whythat <[email protected]> | 2016-07-25 01:30:28 +0300 |
|---|---|---|
| committer | whythat <[email protected]> | 2016-07-25 01:30:28 +0300 |
| commit | 0ff4375c93bd159233282de5a33ad2e6c1e79841 (patch) | |
| tree | e605a5671343d3ffe0201b0d4fc50d26bd6c2821 | |
| parent | Merge #8390: [Wallet] Correct hdmasterkeyid/masterkeyid name confusion (diff) | |
| download | discoin-0ff4375c93bd159233282de5a33ad2e6c1e79841.tar.xz discoin-0ff4375c93bd159233282de5a33ad2e6c1e79841.zip | |
[qa]: add parsing for '<host>:<port>' argument form to rpc_url()
| -rw-r--r-- | qa/rpc-tests/test_framework/util.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/qa/rpc-tests/test_framework/util.py b/qa/rpc-tests/test_framework/util.py index 32fe79efc..8aa34265c 100644 --- a/qa/rpc-tests/test_framework/util.py +++ b/qa/rpc-tests/test_framework/util.py @@ -171,7 +171,15 @@ def rpc_auth_pair(n): def rpc_url(i, rpchost=None): rpc_u, rpc_p = rpc_auth_pair(i) - return "http://%s:%s@%s:%d" % (rpc_u, rpc_p, rpchost or '127.0.0.1', rpc_port(i)) + host = '127.0.0.1' + port = rpc_port(i) + if rpchost: + parts = rpchost.split(':') + if len(parts) == 2: + host, port = parts + else: + host = rpchost + return "http://%s:%s@%s:%d" % (rpc_u, rpc_p, host, int(port)) def wait_for_bitcoind_start(process, url, i): ''' |