Skip to content

Commit 760741a

Browse files
author
MarcoFalke
committed
Merge #8551: [qa] Remove unused code
faaec13 [qa] Remove unused code (MarcoFalke)
2 parents a55a018 + faaec13 commit 760741a

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

qa/pull-tester/rpc-tests.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@
7777
#Set env vars
7878
if "BITCOIND" not in os.environ:
7979
os.environ["BITCOIND"] = BUILDDIR + '/src/bitcoind' + EXEEXT
80-
if "BITCOINCLI" not in os.environ:
81-
os.environ["BITCOINCLI"] = BUILDDIR + '/src/bitcoin-cli' + EXEEXT
8280

8381
if EXEEXT == ".exe" and "-win" not in opts:
8482
# https://github.com/bitcoin/bitcoin/commit/d52802551752140cf41f0d9a225a43e84404d3e9

qa/rpc-tests/importprunedfunds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from test_framework.test_framework import BitcoinTestFramework
77
from test_framework.util import *
8-
import decimal
8+
99

1010
class ImportPrunedFundsTest(BitcoinTestFramework):
1111

qa/rpc-tests/rpcbind_test.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55

66
# Test for -rpcbind, as well as -rpcallowip and -rpcconnect
77

8-
import tempfile
9-
import traceback
10-
118
from test_framework.test_framework import BitcoinTestFramework
129
from test_framework.util import *
1310
from test_framework.netutil import *
1411

12+
1513
class RPCBindTest(BitcoinTestFramework):
1614

1715
def __init__(self):
@@ -109,4 +107,4 @@ def run_test(self):
109107
pass
110108

111109
if __name__ == '__main__':
112-
RPCBindTest ().main ()
110+
RPCBindTest().main()

qa/rpc-tests/segwit.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
from test_framework.test_framework import BitcoinTestFramework
1111
from test_framework.util import *
1212
from test_framework.mininode import sha256, ripemd160
13-
import os
14-
import shutil
1513

1614
NODE_0 = 0
1715
NODE_1 = 1

0 commit comments

Comments
 (0)