Browse Source

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

rawtransactions.py is already in the standard test list
pull/4/head
Jonas Schnelli 9 years ago
committed by Jack Grigg
parent
commit
5bfd954fc6
No known key found for this signature in database GPG Key ID: 6A6914DAFBEA00DA
  1. 1
      qa/pull-tester/rpc-tests.sh
  2. 2
      qa/rpc-tests/fundrawtransaction.py

1
qa/pull-tester/rpc-tests.sh

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

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

Loading…
Cancel
Save