diff --git a/src/full_node/blockchain.py b/src/full_node/blockchain.py index e2009fce12..496c6d3cbe 100644 --- a/src/full_node/blockchain.py +++ b/src/full_node/blockchain.py @@ -101,7 +101,7 @@ class Blockchain: if cpu_count > 61: cpu_count = 61 # Windows Server 2016 has an issue https://bugs.python.org/issue26903 self.pool = concurrent.futures.ProcessPoolExecutor( - max_workers=max(cpu_count - 1, 1) + max_workers=max(cpu_count - 2, 1) ) self.constants = consensus_constants self.tips = []