@ -65,9 +65,9 @@ class TestNode():
def wait_for_rpc_connection ( self ) :
def wait_for_rpc_connection ( self ) :
""" Sets up an RPC connection to the bitcoind process. Returns False if unable to connect. """
""" Sets up an RPC connection to the bitcoind process. Returns False if unable to connect. """
timeout_s = 60 # Wait for up to 60 seconds for the RPC server to respond
# Wait for up to 10 seconds for the RPC server to resp ond
poll_per_s = 4 # Poll at a rate of four times per sec ond
for _ in range ( 40 ) :
for _ in range ( timeout_s * poll_per_s ) :
assert not self . process . poll ( ) , " bitcoind exited with status %i during initialization " % self . process . returncode
assert not self . process . poll ( ) , " bitcoind exited with status %i during initialization " % self . process . returncode
try :
try :
self . rpc = get_rpc_proxy ( rpc_url ( self . datadir , self . index , self . rpchost ) , self . index , coveragedir = self . coverage_dir )
self . rpc = get_rpc_proxy ( rpc_url ( self . datadir , self . index , self . rpchost ) , self . index , coveragedir = self . coverage_dir )
@ -86,7 +86,7 @@ class TestNode():
except ValueError as e : # cookie file not found and no rpcuser or rpcassword. bitcoind still starting
except ValueError as e : # cookie file not found and no rpcuser or rpcassword. bitcoind still starting
if " No RPC credentials " not in str ( e ) :
if " No RPC credentials " not in str ( e ) :
raise
raise
time . sleep ( 0.25 )
time . sleep ( 1.0 / poll_per_s )
raise AssertionError ( " Unable to connect to bitcoind " )
raise AssertionError ( " Unable to connect to bitcoind " )
def get_wallet_rpc ( self , wallet_name ) :
def get_wallet_rpc ( self , wallet_name ) :