merge bitcoin#24039: prevent UnicodeDecodeError when opening log file in feature_init.py

This commit is contained in:
Kittywhiskers Van Gogh 2022-01-12 00:50:32 +09:00
parent d35af87936
commit a6062445be
No known key found for this signature in database
GPG Key ID: 30CD0C065E5C4AAD

View File

@ -93,7 +93,7 @@ class InitStressTest(BitcoinTestFramework):
additional_lines = random.randint(1, num_total_logs) additional_lines = random.randint(1, num_total_logs)
self.log.debug(f"Starting node and will exit after {additional_lines} lines") self.log.debug(f"Starting node and will exit after {additional_lines} lines")
node.start(extra_args=['-txindex=1']) node.start(extra_args=['-txindex=1'])
logfile = open(node.debug_log_path, 'r', encoding='utf8') logfile = open(node.debug_log_path, 'rb')
MAX_SECS_TO_WAIT = 10 MAX_SECS_TO_WAIT = 10
start = time.time() start = time.time()