File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
test/functional/test_framework Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -255,8 +255,8 @@ def stop_node(self, i):
255
255
except http .client .CannotSendRequest as e :
256
256
self .log .exception ("Unable to stop node" )
257
257
return_code = self .bitcoind_processes [i ].wait (timeout = BITCOIND_PROC_WAIT_TIMEOUT )
258
- assert_equal (return_code , 0 )
259
258
del self .bitcoind_processes [i ]
259
+ assert_equal (return_code , 0 )
260
260
261
261
def stop_nodes (self ):
262
262
"""Stop multiple bitcoind test nodes"""
Original file line number Diff line number Diff line change @@ -203,9 +203,6 @@ def p2p_port(n):
203
203
def rpc_port (n ):
204
204
return PORT_MIN + PORT_RANGE + n + (MAX_NODES * PortSeed .n ) % (PORT_RANGE - 1 - MAX_NODES )
205
205
206
- def rpc_auth_pair (n ):
207
- return 'rpcuser💻' + str (n ), 'rpcpass🔑' + str (n )
208
-
209
206
def rpc_url (datadir , i , rpchost = None ):
210
207
rpc_u , rpc_p = get_auth_cookie (datadir , i )
211
208
host = '127.0.0.1'
You can’t perform that action at this time.
0 commit comments