aboutsummaryrefslogtreecommitdiff
path: root/src/chainparamsbase.h
Commit message (Collapse)AuthorAgeFilesLines
* Apply clang-format on some infrequently-updated filesPieter Wuille2014-09-191-1/+2
|
* header include cleanupPhilip Kaufmann2014-09-141-1/+1
| | | | - ensures alphabetical ordering for includes etc. in source file headers
* add missing header end commentsPhilip Kaufmann2014-08-281-1/+1
| | | | | | - ensures a consistent usage in header files - also add a blank line after the copyright header where missing - also remove orphan new-lines at the end of some files
* Can't log to debug log before chain params initializedWladimir J. van der Laan2014-07-151-0/+6
| | | | | | | | | 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/+52
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.