diff options
| author | John Newbery <[email protected]> | 2017-03-09 09:44:57 -0500 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2017-03-20 10:40:31 -0400 |
| commit | c28ee91db07ce82e134d500ddeb5600363c98048 (patch) | |
| tree | 650469da9d5dc6ea5e82392348f8486fc4140261 /doc/developer-notes.md | |
| parent | Rename qa directory to test (diff) | |
| download | discoin-c28ee91db07ce82e134d500ddeb5600363c98048.tar.xz discoin-c28ee91db07ce82e134d500ddeb5600363c98048.zip | |
Rename rpc-tests directory to functional
Diffstat (limited to 'doc/developer-notes.md')
| -rw-r--r-- | doc/developer-notes.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/developer-notes.md b/doc/developer-notes.md index ec608cfbd..797507cd3 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -132,7 +132,7 @@ Run with the -testnet option to run with "play bitcoins" on the test network, if are testing multi-machine code that needs to operate across the internet. If you are testing something that can run on one machine, run with the -regtest option. -In regression test mode, blocks can be created on-demand; see test/rpc-tests/ for tests +In regression test mode, blocks can be created on-demand; see test/functional/ for tests that run in -regtest mode. **DEBUG_LOCKORDER** @@ -252,7 +252,7 @@ Wallet - *Rationale*: In RPC code that conditionally uses the wallet (such as `validateaddress`) it is easy to forget that global pointer `pwalletMain` - can be NULL. See `test/rpc-tests/disablewallet.py` for functional tests + can be NULL. See `test/functional/disablewallet.py` for functional tests exercising the API with `-disablewallet` - Include `db_cxx.h` (BerkeleyDB header) only when `ENABLE_WALLET` is set |