refactor: introduce default pid file name constant in tests

This commit is contained in:
tdb3
2024-08-28 07:57:59 -04:00
committed by Sebastian Falbesoner
parent 33adc7521c
commit b832ffe044
2 changed files with 6 additions and 2 deletions

View File

@@ -48,6 +48,7 @@ BITCOIND_PROC_WAIT_TIMEOUT = 60
NUM_XOR_BYTES = 8
# The null blocks key (all 0s)
NULL_BLK_XOR_KEY = bytes([0] * NUM_XOR_BYTES)
BITCOIN_PID_FILENAME_DEFAULT = "bitcoind.pid"
class FailedToStartError(Exception):