aboutsummaryrefslogtreecommitdiff
path: root/src/chainparamsbase.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* | Revert merge of pull #4845Wladimir J. van der Laan2014-10-021-17/+0
| | | | | | | | | | | | | | | | | | | | | | It breaks the new mingw tests! See - https://travis-ci.org/bitcoin/bitcoin/jobs/36845581 - https://travis-ci.org/bitcoin/bitcoin/jobs/36845582 This reverts commit 470590277782cce2fe73275c74523aef59a51eab, 5e2e7fcb99738d9254d4030d53e4f711b2fc5ee0, a25fd6be138ff2bff7e2ad6a1a789db523c0193f.
* | Switch testing framework from MAIN to new UNITTEST networkSergioDemianLerner2014-09-291-0/+17
|/ | | | UNITTEST inherites from MAIN but allows synamically changing its parameters using the ModifiableParams() interface
* Apply clang-format on some infrequently-updated filesPieter Wuille2014-09-191-23/+33
|
* cleanup include of assert.hPhilip Kaufmann2014-08-281-1/+2
|
* Can't log to debug log before chain params initializedWladimir J. van der Laan2014-07-151-0/+4
| | | | | | | | | Add a function `AreBaseParamsConfigured` and use this to check before writing to the debug log. This avoids assertions when the application happens to log too early, which happens in the GUI. Messages logged before the base parameters are configured can be shown using `-printtoconsole`.
* Remove unnecessary dependencies for bitcoin-cliWladimir J. van der Laan2014-06-251-0/+93
This commit removes all the unnecessary dependencies (key, core, netbase, sync, ...) from bitcoin-cli. To do this it shards the chain parameters into BaseParams, which contains just the RPC port and data directory (as used by utils and bitcoin-cli) and Params, with the rest.