aboutsummaryrefslogtreecommitdiff
path: root/test/functional/p2p_compactblocks.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge #14296: [wallet] Remove addwitnessaddressMarcoFalke2018-10-241-19/+17
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2b91e42ece [docs] Add release note for removing getwitnessaddress (John Newbery) ebec90ac97 [wallet] Remove deprecated addwitnessaddress RPC method (John Newbery) 07e3f585ab [test] Remove deprecated addwitnessaddress from feature_segwit.py (John Newbery) 82f2fa03a5 [test] Remove deprecated addwitnessaddress from wallet_bumpfee.py (John Newbery) 9d7ee187a3 [test] Remove deprecated addwitnessaddress from p2p_compactblocks.py (John Newbery) 3cf77f0b3e [tests] Remove deprecated addwitnessaddress call from wallet_dump.py (John Newbery) bdefc9705d [tests] Remove deprecated addwitnessaddress call from feature_nulldummy (John Newbery) 67d7d67cf3 [test] Fix flake8 warnings in tests (John Newbery) Pull request description: Fully removes the `addwitnessaddress` RPC method, which was deprecated in V0.17 Tree-SHA512: 8fa8a2a721a81262fbdedbe1cef031e6a07aa6abbc9760dbc62738fc4f688b44bd737d0f3cdb1aec046866a6395befbfecde0f34e76a99e11d3cf566cad1d0de
| * [test] Remove deprecated addwitnessaddress from p2p_compactblocks.pyJohn Newbery2018-09-231-2/+2
| |
| * [test] Fix flake8 warnings in testsJohn Newbery2018-09-231-17/+15
| | | | | | | | | | Fix all flake8 warnings in tests that are about to be updated to remove addwitnessaddress
* | Merge #13424: Consistently validate txid / blockhash length and encoding in ↵MarcoFalke2018-09-241-1/+1
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rpc calls 5eb20f81d9 Consistently use ParseHashV to validate hash inputs in rpc (Ben Woosley) Pull request description: ParseHashV validates the length and encoding of the string and throws an informative RPC error on failure, which is as good or better than these alternative calls. Note I switched ParseHashV to check string length first, because IsHex tests that the length is even, and an error like: "must be of length 64 (not 63, for X)" is much more informative than "must be hexadecimal string (not X)" in that case. Split from #13420 Tree-SHA512: f0786b41c0d7793ff76e4b2bb35547873070bbf7561d510029e8edb93f59176277efcd4d183b3185532ea69fc0bbbf3dbe9e19362e8017007ae9d51266cd78ae
| * Consistently use ParseHashV to validate hash inputs in rpcBen Woosley2018-08-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | ParseHashV validates the length and encoding of the string and throws an informative RPC error on failure, which is as good or better than these alternative calls. Note I switched ParseHashV to check string length first, because IsHex tests that the length is even, and an error like: "must be of length 64 (not 63, for X)" is much more informative than "must be hexadecimal string (not X)"
* | qa: Run all tests even if wallet is not compiledMarcoFalke2018-09-101-0/+3
| |
* | tests: Use explicit importspracticalswift2018-08-131-4/+7
| |
* | Merge #13916: qa: wait_for_verack by defaultMarcoFalke2018-08-091-3/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | fa5587fe71 qa: wait_for_verack by default (MarcoFalke) Pull request description: This removes the need to do so manually every time a connection is added. Tree-SHA512: a46c92cb4df41e30778b42b9fd3dcbd8d2d82aa7503d1213cb1c1165034f648d8caee01c292e2d87d05b0f71696996eef5be8a753f35ab49e5f66b0e3bf29f21
| * | qa: wait_for_verack by defaultMarcoFalke2018-08-081-3/+1
| | |
* | | Update copyright headers to 2018DrahtBot2018-07-271-1/+1
|/ /
* | qa: Avoid start/stop of the network thread mid-testMarcoFalke2018-06-251-3/+1
| |
* | [qa] mininode: Expose connection state through is_connectedMarcoFalke2018-06-221-1/+1
|/
* qa: Pad scriptPubKeys to get minimum sized txsMarcoFalke2018-05-051-2/+3
|
* Merge #12716: Fix typos and cleanup in various filesMarcoFalke2018-03-211-1/+1
|\ | | | | | | | | | | | | | | | | | | 4d9b4256d8 Fix typos (Dimitris Apostolou) Pull request description: Unfortunately I messed up my repo while trying to squash #12593 so I created a PR with just the correct fixes. Tree-SHA512: 295d77b51bd2a9381f1802c263de7ffb2edd670d9647391e32f9a414705b3c8b483bb0e469a9b85ab6a70919ea13397fa8dfda2aea7a398b64b187f178fe6a06
| * Fix typosDimitris Apostolou2018-03-211-1/+1
| |
* | scripted-diff: rename TestNode to TestP2PConn in testsJohn Newbery2018-03-191-5/+5
|/ | | | | | | | | | Several test scripts define a subclass of P2PInterface called TestNode. This commit renames those to TestP2PConn since we already have a TestNode class in the test framework. -BEGIN VERIFY SCRIPT- sed -i s/TestNode/TestP2PConn/ test/functional/*py test/functional/test_framework/comptool.py _END VERIFY SCRIPT-
* [tests] Rename p2p_* functional tests.Anthony Towns2018-01-251-0/+921