test: add null block xor key

This commit is contained in:
tdb3 2024-08-20 20:14:23 -04:00
parent 1ad999b9da
commit d1610962bf
No known key found for this signature in database

View File

@ -46,6 +46,8 @@ BITCOIND_PROC_WAIT_TIMEOUT = 60
# The size of the blocks xor key
# from InitBlocksdirXorKey::xor_key.size()
NUM_XOR_BYTES = 8
# The null blocks key (all 0s)
NULL_BLK_XOR_KEY = bytes([0] * NUM_XOR_BYTES)
class FailedToStartError(Exception):