Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-31 | scripted-diff: Bump copyright headers | MarcoFalke | |
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT- | |||
2020-09-29 | net, refactor: Refactor CBaseChainParams::RPCPort function | Hennadii Stepanov | |
2020-09-29 | net: Add alternative port for onion service | Hennadii Stepanov | |
This change allows to distinguish incoming Tor connections from others. | |||
2020-09-18 | add signet chain and accompanying parameters | Karl-Johan Alm | |
Co-authored-by: Anthony Towns <aj@erisian.com.au> | |||
2020-07-29 | refactor: add unused ArgsManager to replace gArgs | Ivan Metlushko | |
2019-12-30 | scripted-diff: Bump copyright of files changed in 2019 | MarcoFalke | |
-BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT- | |||
2019-11-01 | doc: Remove explicit network name references | Fabian Jahr | |
2019-07-16 | Remove wallet settings from chainparams | MarcoFalke | |
2018-07-27 | Update copyright headers to 2018 | DrahtBot | |
2018-05-09 | Make gArgs aware of the arguments | Andrew Chow | |
gArgs knows what the available arguments are and their help. Getting the help message is moved to gArgs and HelpMessage() is removed | |||
2018-04-06 | Move ChainNameFromCommandLine into ArgsManager and rename to GetChainName | Anthony Towns | |
2018-02-08 | Refactor: One CBaseChainParams should be enough | Jorge Timón | |
2018-01-03 | Increment MIT Licence copyright header year on files modified in 2017 | Akira Takizawa | |
2017-05-03 | Chainparams: Use a regular factory for creating chainparams | Jorge Timón | |
2017-04-26 | Remove unused C++ code not covered by unit tests | practicalswift | |
2015-12-13 | Bump copyright headers to 2015 | MarcoFalke | |
2015-12-01 | Constrain rpcport default values to a single location in code | Luke Dashjr | |
2015-10-20 | Chainparams: Translations: DRY: options and error strings | Jorge Timón | |
Also remove SelectBaseParamsFromCommandLine and SelectParamsFromCommandLine | |||
2015-10-20 | Chainparams: Replace CBaseChainParams::Network enum with string constants ↵ | Jorge Timón | |
(suggested by Wladimir) | |||
2015-05-01 | Bugfix: Grammar fixes | Corinne Dashjr | |
2015-03-09 | test: Remove UNITTEST params | Wladimir J. van der Laan | |
UNITTEST parameter are not used by any current tests, and the model (modifyable parameters) is inconvenient when unit-testing. As they are stored in a global structure eevery test would have to (re)set up its own parameters. For consistency it is also better to test with MAIN parameters. | |||
2015-01-06 | Merge pull request #5598 | Wladimir J. van der Laan | |
eb0d34b Remove unused chainparam networkID (jtimon) | |||
2014-12-19 | Added "Core" to copyright headers | sandakersmann | |
Github-Pull: #5494 Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60 | |||
2014-12-11 | Remove unused chainparam networkID | jtimon | |
2014-11-03 | Fix all header defines | Pavel Janík | |
2014-10-25 | Update comments in chainparams to be doxygen compatible | Michael Ford | |
2014-10-17 | Merge pull request #4804 from jtimon/chainparams3 | Wladimir J. van der Laan | |
Remove CBaseChainParams::NetworkID() | |||
2014-10-10 | SQUASHME: NetworkIdFromCommandLine() function instead of method | jtimon | |
2014-10-02 | Switch testing framework from MAIN to new UNITTEST network | SergioDemianLerner | |
UNITTEST inherites from MAIN but allows synamically changing its parameters using the ModifiableParams() interface | |||
2014-10-02 | Revert merge of pull #4845 | Wladimir J. van der Laan | |
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. | |||
2014-09-29 | Switch testing framework from MAIN to new UNITTEST network | SergioDemianLerner | |
UNITTEST inherites from MAIN but allows synamically changing its parameters using the ModifiableParams() interface | |||
2014-09-21 | Remove CBaseChainParams::NetworkID() | jtimon | |
2014-09-19 | Apply clang-format on some infrequently-updated files | Pieter Wuille | |
2014-09-14 | header include cleanup | Philip Kaufmann | |
- ensures alphabetical ordering for includes etc. in source file headers | |||
2014-08-28 | add missing header end comments | Philip Kaufmann | |
- 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 | |||
2014-07-15 | Can't log to debug log before chain params initialized | Wladimir J. van der Laan | |
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`. | |||
2014-06-25 | Remove unnecessary dependencies for bitcoin-cli | Wladimir J. van der Laan | |
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. |