Skip to content

Commit

Permalink
[QA] remove rawtransactions.py from the extended test list
Browse files Browse the repository at this point in the history
rawtransactions.py is already in the standard test list
  • Loading branch information
jonasschnelli authored and str4d committed Mar 2, 2017
1 parent 897a370 commit 5bfd954
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion qa/pull-tester/rpc-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ testScriptsExt=(
'smartfees.py'
'maxblocksinflight.py'
'invalidblockrequest.py'
'rawtransactions.py'
# 'forknotify.py'
'p2p-acceptblock.py'
);
Expand Down
2 changes: 1 addition & 1 deletion qa/rpc-tests/fundrawtransaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def run_test(self):
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 #
Expand Down

0 comments on commit 5bfd954

Please sign in to comment.