diff options
author | fanquake <fanquake@gmail.com> | 2021-05-28 12:03:37 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-07-27 11:26:14 +0800 |
commit | fbeb8c43bc5bce131e15eb9e162ea457bfe2b83e (patch) | |
tree | 3e7c2a55cf4d4f3df84197f64e5d7f256c8ac53f /test/functional/test_framework/test_node.py | |
parent | 1488f55fa57a1400a57be837b574183f019c7855 (diff) |
test: add type annotations to util.get_rpc_proxy
Remove proxy.url assignment:
error: "AuthServiceProxy" has no attribute "url"
Diffstat (limited to 'test/functional/test_framework/test_node.py')
-rwxr-xr-x | test/functional/test_framework/test_node.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index afa904c8d7..f9e2cfa2f5 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -258,7 +258,7 @@ class TestNode(): return self.rpc = rpc self.rpc_connected = True - self.url = self.rpc.url + self.url = self.rpc.rpc_url return except JSONRPCException as e: # Initialization phase # -28 RPC in warmup |