aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/disablewallet.py
Commit message (Collapse)AuthorAgeFilesLines
* Update RPC tests for Dogecoin (#1431)Ross Nicoll2018-09-191-4/+4
| | | | | | | | | * Make most of the RPC tests pass * Add AUXPoW rpc tests - Tests the auxpow rpc interface `getauxblock` - Tests consensus constraints for auxpow: - Minimum block height - Valid scrypt proof of work - Foreign chain ID
* [qa] Remove hardcoded "4 nodes" from test_frameworkMarcoFalke2016-05-151-4/+5
|
* [qa] Switch to py3MarcoFalke2016-05-051-2/+2
|
* [qa] Use python2/3 syntaxMarcoFalke2016-03-311-2/+2
|
* RPC tests for generatetoaddressAndrew C2016-03-211-0/+14
| | | | | | | | Adds two RPC tests for the generatetoaddress RPC, one in the wallet, and one when the wallet is disabled. The wallet RPC Test mines Bitcoin to another node's address and checks that that node has received the Bitcoin. The RPC test without the wallet mines Bitcoin to an arbitrary address and checks that it works. It then mines to an arbitrary invalid address and checks that that fails.
* [qa] Fix pyton syntax in rpc testsMarcoFalke2016-01-131-0/+1
|
* Bump copyright headers to 2015MarcoFalke2015-12-131-1/+1
|
* Fix crash in validateaddress with -disablewalletWladimir J. van der Laan2015-11-091-0/+32
Fix a null pointer dereference in validateaddress with -disablewallet. Also add a regression testcase.