[QA] remove rawtransactions.py from the extended test list

rawtransactions.py is already in the standard test list
This commit is contained in:
Jonas Schnelli 2015-07-10 21:14:33 +02:00 committed by Jack Grigg
parent 897a370c39
commit 5bfd954fc6
No known key found for this signature in database
GPG Key ID: 6A6914DAFBEA00DA
2 changed files with 1 additions and 2 deletions

View File

@ -56,7 +56,6 @@ testScriptsExt=(
'smartfees.py'
'maxblocksinflight.py'
'invalidblockrequest.py'
'rawtransactions.py'
# 'forknotify.py'
'p2p-acceptblock.py'
);

View File

@ -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 #