mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 06:52:36 +01:00
doc: update developer notes for signet
This commit is contained in:
parent
e75f91eae3
commit
ee701a9204
1 changed files with 8 additions and 7 deletions
|
@ -14,7 +14,7 @@ Developer Notes
|
|||
- [Compiling for debugging](#compiling-for-debugging)
|
||||
- [Compiling for gprof profiling](#compiling-for-gprof-profiling)
|
||||
- [`debug.log`](#debuglog)
|
||||
- [Testnet and Regtest modes](#testnet-and-regtest-modes)
|
||||
- [Signet, testnet, and regtest modes](#signet-testnet-and-regtest-modes)
|
||||
- [DEBUG_LOCKORDER](#debug_lockorder)
|
||||
- [Valgrind suppressions file](#valgrind-suppressions-file)
|
||||
- [Compiling for test coverage](#compiling-for-test-coverage)
|
||||
|
@ -259,14 +259,15 @@ on all categories (and give you a very large `debug.log` file).
|
|||
The Qt code routes `qDebug()` output to `debug.log` under category "qt": run with `-debug=qt`
|
||||
to see it.
|
||||
|
||||
### Testnet and Regtest modes
|
||||
### Signet, testnet, and regtest modes
|
||||
|
||||
Run with the `-testnet` option to run with "play bitcoins" on the test network, if you
|
||||
are testing multi-machine code that needs to operate across the internet.
|
||||
If you are testing multi-machine code that needs to operate across the internet,
|
||||
you can run with either the `-signet` or the `-testnet` config option to test
|
||||
with "play bitcoins" on a test network.
|
||||
|
||||
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/functional/](/test/functional) for tests
|
||||
that run in `-regtest` mode.
|
||||
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/functional/](/test/functional) for tests that run in `-regtest` mode.
|
||||
|
||||
### DEBUG_LOCKORDER
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue