[qa] Remove unused code

This commit is contained in:
MarcoFalke 2016-08-19 22:41:09 +02:00 committed by Jack Grigg
parent b25a63593e
commit e4d1dcc753
2 changed files with 2 additions and 3 deletions

View File

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

View File

@ -23,6 +23,7 @@ from test_framework.netutil import addr_to_hex, get_bind_addrs, all_interfaces
import sys
class RPCBindTest(BitcoinTestFramework):
def __init__(self):
@ -120,4 +121,4 @@ class RPCBindTest(BitcoinTestFramework):
pass
if __name__ == '__main__':
RPCBindTest ().main ()
RPCBindTest().main()