mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-10-10 11:33:46 +02:00
Fix Python Docstring to include all Args.
This commit is contained in:
@@ -244,7 +244,7 @@ class PortSeed:
|
|||||||
# Must be initialized with a unique integer for each process
|
# Must be initialized with a unique integer for each process
|
||||||
n = None
|
n = None
|
||||||
|
|
||||||
def get_rpc_proxy(url, node_number, timeout=None, coveragedir=None):
|
def get_rpc_proxy(url, node_number, *, timeout=None, coveragedir=None):
|
||||||
"""
|
"""
|
||||||
Args:
|
Args:
|
||||||
url (str): URL of the RPC server to call
|
url (str): URL of the RPC server to call
|
||||||
@@ -252,6 +252,7 @@ def get_rpc_proxy(url, node_number, timeout=None, coveragedir=None):
|
|||||||
|
|
||||||
Kwargs:
|
Kwargs:
|
||||||
timeout (int): HTTP timeout in seconds
|
timeout (int): HTTP timeout in seconds
|
||||||
|
coveragedir (str): Directory
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
AuthServiceProxy. convenience object for making RPC calls.
|
AuthServiceProxy. convenience object for making RPC calls.
|
||||||
|
Reference in New Issue
Block a user