Skip to content

Commit 055abfb

Browse files
author
MarcoFalke
committed
Merge #20023: test: remove unused constants in functional tests
92e28fa test: remove unused constants in functional tests (Sebastian Falbesoner) Pull request description: This mini-PR gets rid of constants in functional tests that are not used anymore. Found by [vulture ](https://pypi.org/project/vulture/)via the following script that has been lying around here locally for quite some time (I think it was once proposed by practicalswift, but I don't remember the concrete topic/PR): ``` #!/bin/sh for F in $(git ls-files -- "*.py"); do vulture "$F" | grep "unused variable"; done ``` ACKs for top commit: practicalswift: ACK 92e28fa: patch looks correct. Tree-SHA512: 16516abc8014207bcefdf0545dffaecff1fbba66f45b54c02371dcfd1f18194855c6b72598c11b5407009561eafe8048d47af3471f0efb1795d52477d5a0232e
2 parents 4f45ea1 + 92e28fa commit 055abfb

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

test/functional/p2p_segwit.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@
8989

9090
# The versionbit bit used to signal activation of SegWit
9191
VB_WITNESS_BIT = 1
92-
VB_PERIOD = 144
9392
VB_TOP_BITS = 0x20000000
9493

9594
MAX_SIGOP_COST = 80000

test/functional/wallet_multiwallet.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
get_rpc_proxy,
2222
)
2323

24-
FEATURE_LATEST = 169900
25-
2624
got_loading_error = False
2725
def test_load_unload(node, name):
2826
global got_loading_error

0 commit comments

Comments
 (0)