Merge #8551: [qa] Remove unused code

faaec13 [qa] Remove unused code (MarcoFalke)
This commit is contained in:
MarcoFalke 2016-08-22 10:20:43 +02:00 committed by Alexander Block
parent b47cc13317
commit 5b62ad34a3
3 changed files with 3 additions and 7 deletions

View File

@ -86,8 +86,6 @@ for arg in sys.argv[1:]:
#Set env vars #Set env vars
if "DASHD" not in os.environ: if "DASHD" not in os.environ:
os.environ["DASHD"] = BUILDDIR + '/src/dashd' + EXEEXT os.environ["DASHD"] = BUILDDIR + '/src/dashd' + EXEEXT
if "DASHCLI" not in os.environ:
os.environ["DASHCLI"] = BUILDDIR + '/src/dash-cli' + EXEEXT
if EXEEXT == ".exe" and "-win" not in opts: if EXEEXT == ".exe" and "-win" not in opts:
# https://github.com/bitcoin/bitcoin/commit/d52802551752140cf41f0d9a225a43e84404d3e9 # https://github.com/bitcoin/bitcoin/commit/d52802551752140cf41f0d9a225a43e84404d3e9

View File

@ -5,7 +5,7 @@
from test_framework.test_framework import BitcoinTestFramework from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import * from test_framework.util import *
import decimal
class ImportPrunedFundsTest(BitcoinTestFramework): class ImportPrunedFundsTest(BitcoinTestFramework):

View File

@ -5,13 +5,11 @@
# Test for -rpcbind, as well as -rpcallowip and -rpcconnect # Test for -rpcbind, as well as -rpcallowip and -rpcconnect
import tempfile
import traceback
from test_framework.test_framework import BitcoinTestFramework from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import * from test_framework.util import *
from test_framework.netutil import * from test_framework.netutil import *
class RPCBindTest(BitcoinTestFramework): class RPCBindTest(BitcoinTestFramework):
def __init__(self): def __init__(self):
@ -109,4 +107,4 @@ class RPCBindTest(BitcoinTestFramework):
pass pass
if __name__ == '__main__': if __name__ == '__main__':
RPCBindTest ().main () RPCBindTest().main()