16 | @@ -17,9 +17,12 @@
17 | assert_equal,
18 | get_rpc_proxy,
19 | rpc_url,
20 | + wait_until,
21 | )
22 | from .authproxy import JSONRPCException
23 |
24 | +BITCOIND_PROC_WAIT_TIMEOUT = 60
This constant is now only used in one place. Perhaps remove it as a constant and add it as an integer literal in the definition of wait_until_stopped() with a comment.
If not, perhaps move this constant assignment down to just above the call to wait_until_stopped()
I prefer to put constants at the top of a file and my personal taste is that it is ugly to place them between or inside methods/functions.