From 9847bc870dce362e9fb703d2f221756e334febd7 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 18 Jan 2017 12:11:50 +0100 Subject: [PATCH] Create empty zcash.conf during coverage checks Fixes regression caused by #2013. --- qa/pull-tester/run-bitcoind-for-test.sh.in | 1 + 1 file changed, 1 insertion(+) diff --git a/qa/pull-tester/run-bitcoind-for-test.sh.in b/qa/pull-tester/run-bitcoind-for-test.sh.in index b0b8811a0..999b0f5b7 100755 --- a/qa/pull-tester/run-bitcoind-for-test.sh.in +++ b/qa/pull-tester/run-bitcoind-for-test.sh.in @@ -7,6 +7,7 @@ ZCASH_LOAD_TIMEOUT=500 DATADIR="@abs_top_builddir@/.zcash" rm -rf "$DATADIR" mkdir -p "$DATADIR"/regtest +touch "$DATADIR/zcash.conf" touch "$DATADIR/regtest/debug.log" tail -q -n 1 -F "$DATADIR/regtest/debug.log" | grep -m 1 -q "Done loading" & WAITER=$!