From 764b3a3239839cd727e0b159cc38c5d215621758 Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Wed, 17 Jul 2024 16:28:47 +0300 Subject: [PATCH] test: disable mocktime in p2p_eviction.py Co-authored-by: Konstantin Akimov --- test/functional/p2p_eviction.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/functional/p2p_eviction.py b/test/functional/p2p_eviction.py index be76e3b635..0dea0c1d38 100755 --- a/test/functional/p2p_eviction.py +++ b/test/functional/p2p_eviction.py @@ -48,6 +48,10 @@ class P2PEvict(BitcoinTestFramework): # 4 by netgroup, 4 that sent us blocks, 4 that sent us transactions and 8 via lowest ping time self.extra_args = [['-maxconnections=32']] + def setup_network(self): + self.disable_mocktime() + super().setup_network() + def run_test(self): protected_peers = set() # peers that we expect to be protected from eviction current_peer = -1