aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/segwit.py
AgeCommit message (Collapse)Author
2017-03-20Rename qa directory to testJohn Newbery
2017-03-15Fix RPC failure testing (2 of 2)John Newbery
Commit 9db8eecac1c713c760c0217b6acb7455c657fa8b improved the assert_raises_jsonrpc() function for better testing of RPC failure modes. This commit completes the job by removing remaining broken try-except RPC testing from the individual test cases and replacing it with calls to assert_raises_jsonrpc().
2017-03-14Test transaction selection when gbt called without segwit supportSuhas Daftuar
2017-03-14Don't require segwit in getblocktemplate for segwit signalling or miningSuhas Daftuar
Segwit's version bit will be signalled for all invocations of CreateNewBlock, and not specifying segwit only will cause CreateNewBlock to skip transactions with witness from being selected.
2017-03-10Improve readability of segwit.pySuhas Daftuar
2017-03-09Use logging in individual testsJohn Newbery
2017-03-09Remove manual debug settings in qa tests.John Newbery
-debug and -logtimemicros are now set by default. Individual test cases no longer need to set these parameters manually.
2017-02-23Fix segwit getblocktemplate test.John Newbery
2017-02-23Fix docstrings in qa testsJohn Newbery
This commit fixes the module-level docstrings for the tests and helper modules in qa. Many of these tests were uncommented previously - this commit ensures that every test case has at least a minimum level of commenting.
2017-02-16QA: Test GBT size/weight limit valuesLuke Dashjr
2017-01-20Remove redundant semicolons in Python codepracticalswift
2016-12-11[qa] Don't set unknown rpcserialversionMarcoFalke
2016-12-05Add option to return non-segwit serialization via rpcGregory Sanders
2016-10-17test segwit uncompressed key fixesJohnson Lau
2016-08-19[qa] Remove unused codeMarcoFalke
2016-08-17Merge #8482: [qa] Use single cache dir for chainsWladimir J. van der Laan
fad8cf6 [qa] Use single cache dir for chains (MarcoFalke) fa2d68f [qa] Adjust timeouts for micro-optimization of run time (MarcoFalke) fae596f [qa] Sort scripts by time for pull_tester and don't overwrite setup_chain (MarcoFalke)
2016-08-08qa/rpc-tests/segwit: Test GBT sigops before and after activationLuke Dashjr
2016-07-15[qa] Sort scripts by time for pull_tester and don't overwrite setup_chainMarcoFalke
2016-06-22[qa] Add rpc test for segwitAlex Morcos
Amended by Pieter Wuille to use multisig 1-of-1 for P2WSH tests, and BIP9 based switchover logic. Fixes and py3 conversion by Marco Falke.