diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2014-02-24 14:39:23 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2014-02-24 14:39:23 -0500 |
commit | a16ad1c0f465935d437bd9ae9875b28be49ec65b (patch) | |
tree | 99166e16a402c3618fbfa32c5578c3c90625950d /qa | |
parent | beabca2be092d0e2a1de26989d4e63a12cce1284 (diff) | |
parent | ca4cf5cff6fb60c9769b62acce2e3a8fcd0e7aae (diff) |
Merge pull request #3704 from gavinandresen/wallet_lock_fixes
Wallet locking fixes for -DDEBUG_LOCKORDER
Diffstat (limited to 'qa')
-rwxr-xr-x | qa/rpc-tests/txnmall.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/qa/rpc-tests/txnmall.sh b/qa/rpc-tests/txnmall.sh index 6bf92fce40..06e4f7102d 100755 --- a/qa/rpc-tests/txnmall.sh +++ b/qa/rpc-tests/txnmall.sh @@ -8,6 +8,8 @@ if [ $# -lt 1 ]; then exit 1 fi +set -f + BITCOIND=${1}/bitcoind CLI=${1}/bitcoin-cli @@ -23,13 +25,13 @@ D=$(mktemp -d test.XXXXX) D1=${D}/node1 CreateDataDir $D1 port=11000 rpcport=11001 -B1ARGS="-datadir=$D1 -debug" +B1ARGS="-datadir=$D1" $BITCOIND $B1ARGS & B1PID=$! D2=${D}/node2 CreateDataDir $D2 port=11010 rpcport=11011 -B2ARGS="-datadir=$D2 -debug" +B2ARGS="-datadir=$D2" $BITCOIND $B2ARGS & B2PID=$! |