aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/maxblocksinflight.py
diff options
context:
space:
mode:
authorSuhas Daftuar <[email protected]>2015-04-29 09:18:33 -0400
committerSuhas Daftuar <[email protected]>2015-04-29 09:18:33 -0400
commit2703412a39c95c811a40c3fff6929e4ce59c3c62 (patch)
tree97585c3010cafead7e89bc885c47e9eeda250dd7 /qa/rpc-tests/maxblocksinflight.py
parentAdd some travis debugging for python scripts (diff)
downloaddiscoin-2703412a39c95c811a40c3fff6929e4ce59c3c62.tar.xz
discoin-2703412a39c95c811a40c3fff6929e4ce59c3c62.zip
Fix default binary in p2p tests to use environment variable
Diffstat (limited to 'qa/rpc-tests/maxblocksinflight.py')
-rwxr-xr-xqa/rpc-tests/maxblocksinflight.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qa/rpc-tests/maxblocksinflight.py b/qa/rpc-tests/maxblocksinflight.py
index 4bfe20399..94535822d 100755
--- a/qa/rpc-tests/maxblocksinflight.py
+++ b/qa/rpc-tests/maxblocksinflight.py
@@ -77,7 +77,8 @@ class TestManager(NodeConnCB):
class MaxBlocksInFlightTest(BitcoinTestFramework):
def add_options(self, parser):
- parser.add_option("--testbinary", dest="testbinary", default="bitcoind",
+ parser.add_option("--testbinary", dest="testbinary",
+ default=os.getenv("BITCOIND", "bitcoind"),
help="Binary to test max block requests behavior")
def setup_chain(self):