[QA] remove rawtransactions.py from the extended test list
rawtransactions.py is already in the standard test list
This commit is contained in:
parent
6ed38b0b8f
commit
9da8fc8f26
2 changed files with 1 additions and 2 deletions
|
@ -54,7 +54,6 @@ testScriptsExt=(
|
||||||
'smartfees.py'
|
'smartfees.py'
|
||||||
'maxblocksinflight.py'
|
'maxblocksinflight.py'
|
||||||
'invalidblockrequest.py'
|
'invalidblockrequest.py'
|
||||||
'rawtransactions.py'
|
|
||||||
# 'forknotify.py'
|
# 'forknotify.py'
|
||||||
'p2p-acceptblock.py'
|
'p2p-acceptblock.py'
|
||||||
);
|
);
|
||||||
|
|
|
@ -63,7 +63,7 @@ class RawTransactionsTest(BitcoinTestFramework):
|
||||||
rawtxfund = self.nodes[2].fundrawtransaction(rawtx)
|
rawtxfund = self.nodes[2].fundrawtransaction(rawtx)
|
||||||
fee = rawtxfund['fee']
|
fee = rawtxfund['fee']
|
||||||
dec_tx = self.nodes[2].decoderawtransaction(rawtxfund['hex'])
|
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 #
|
# simple test with two coins #
|
||||||
|
|
Loading…
Reference in a new issue