From 5bfd954fc66ace4a9591a5153c0110f04b182735 Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Fri, 10 Jul 2015 21:14:33 +0200 Subject: [PATCH] [QA] remove rawtransactions.py from the extended test list rawtransactions.py is already in the standard test list --- qa/pull-tester/rpc-tests.sh | 1 - qa/rpc-tests/fundrawtransaction.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/qa/pull-tester/rpc-tests.sh b/qa/pull-tester/rpc-tests.sh index 790c6e3f..e2cba179 100755 --- a/qa/pull-tester/rpc-tests.sh +++ b/qa/pull-tester/rpc-tests.sh @@ -56,7 +56,6 @@ testScriptsExt=( 'smartfees.py' 'maxblocksinflight.py' 'invalidblockrequest.py' - 'rawtransactions.py' # 'forknotify.py' 'p2p-acceptblock.py' ); diff --git a/qa/rpc-tests/fundrawtransaction.py b/qa/rpc-tests/fundrawtransaction.py index 3431771b..80f1d1e1 100755 --- a/qa/rpc-tests/fundrawtransaction.py +++ b/qa/rpc-tests/fundrawtransaction.py @@ -63,7 +63,7 @@ class RawTransactionsTest(BitcoinTestFramework): rawtxfund = self.nodes[2].fundrawtransaction(rawtx) fee = rawtxfund['fee'] dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex']) - assert_equal(len(dec_tx['vin']) > 0, True) #test if we have enought inputs + assert_equal(len(dec_tx['vin']) > 0, True) #test if we have enough inputs ############################## # simple test with two coins #