From 15445d326cda6a23686d29f473e173a93dfeda6d Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Tue, 4 Nov 2025 01:56:55 +0300 Subject: [PATCH] fix: bump PORT_RANGE 5000->10000 --- test/functional/test_framework/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index 107bd72cc6c3..10744eaffd0d 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -311,7 +311,7 @@ def random_bytes(n): # Don't assign rpc or p2p ports lower than this PORT_MIN = int(os.getenv('TEST_RUNNER_PORT_MIN', default=11000)) # The number of ports to "reserve" for p2p and rpc, each -PORT_RANGE = 5000 +PORT_RANGE = 10000 class PortSeed: