diff options
author | Jon Atack <jon@atack.com> | 2020-07-08 09:32:09 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2020-07-11 19:41:21 +0200 |
commit | 1d4024bca8086cceff7539dd8c15e0b7fe1cc5ea (patch) | |
tree | 3cb640eb7860718367192cef40763be65746e419 /test/functional | |
parent | 42fe6aad326f62c7e6ea12ee873149257f67ce5d (diff) |
net: remove -banscore configuration option
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/p2p_leak.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/functional/p2p_leak.py b/test/functional/p2p_leak.py index 3b3dbd08f2..a354202263 100755 --- a/test/functional/p2p_leak.py +++ b/test/functional/p2p_leak.py @@ -26,7 +26,7 @@ from test_framework.util import ( wait_until, ) -banscore = 10 +DEFAULT_BANSCORE_THRESHOLD = 100 class CLazyNode(P2PInterface): @@ -70,7 +70,7 @@ class CNodeNoVersionBan(CLazyNode): # NOTE: implementation-specific check here. Remove if bitcoind ban behavior changes def on_open(self): super().on_open() - for i in range(banscore): + for _ in range(DEFAULT_BANSCORE_THRESHOLD): self.send_message(msg_verack()) # Node that never sends a version. This one just sits idle and hopes to receive @@ -106,7 +106,6 @@ class P2PVersionStore(P2PInterface): class P2PLeakTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 1 - self.extra_args = [['-banscore=' + str(banscore)]] def run_test(self): no_version_bannode = self.nodes[0].add_p2p_connection(CNodeNoVersionBan(), send_version=False, wait_for_verack=False) |