Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-04 | The first thing that SelectParams does is call SelectBaseParams. Therefore, ↵ | mruddy | |
we do not need to call SelectBaseParams immediately prior to calling SelectParams. | |||
2014-10-25 | Update comments in chainparams to be doxygen compatible | Michael Ford | |
2014-10-24 | Clear vFixedSeeds for regtest network | Wladimir J. van der Laan | |
It shouldn't inherit these from testnet. (seems to be already done for unit test network but forgotten here...) Fixes #5127. | |||
2014-10-22 | Merge pull request #4981 | Wladimir J. van der Laan | |
85c579e script: add a slew of includes all around and drop includes from script.h (Cory Fields) db8eb54 script: move ToString and ValueString out of the header (Cory Fields) e9ca428 script: add ToByteVector() for converting anything with begin/end (Cory Fields) 066e2a1 script: move CScriptID to standard.h and add a ctor for creating them from CScripts (Cory Fields) | |||
2014-10-17 | script: add a slew of includes all around and drop includes from script.h | Cory Fields | |
Lots of files ended up with indirect includes from script.h. | |||
2014-10-17 | Merge pull request #4804 from jtimon/chainparams3 | Wladimir J. van der Laan | |
Remove CBaseChainParams::NetworkID() | |||
2014-10-16 | squashme on 3fdb9e8c (Bluematt's bikeshedding) | jtimon | |
2014-10-10 | SQUASHME: NetworkIdFromCommandLine() function instead of method | jtimon | |
2014-10-10 | Add fTestnetToBeDeprecatedFieldRPC to CChainParams | jtimon | |
2014-10-10 | Move checkpoint data selection to chainparams | jtimon | |
2014-10-02 | Avoid introducing a virtual into CChainParams | Wladimir J. van der Laan | |
Treat fSkipProofOfWorkCheck the same as other parameters. | |||
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 | Avoid introducing a virtual into CChainParams | Wladimir J. van der Laan | |
Treat fSkipProofOfWorkCheck the same as other parameters. | |||
2014-09-29 | Suggested corrections on comments, variable names. | SergioDemianLerner | |
Also new test case testing the PoW skip in UNITTEST. | |||
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-10 | Merge pull request #4623 | Wladimir J. van der Laan | |
e84843c Broken addresses on command line no longer trigger testnet. (Ross Nicoll) | |||
2014-09-07 | Add testnet DNS seed of Andreas Schildbach. | Andreas Schildbach | |
It runs sipas crawler, but rather than using its custom nameserver implementation it serves a generated zonefile via bind9. The zone always contains 25 IPv4 and 25 IPv6 peers. FWIW, the zone is secured using DNSSEC. | |||
2014-09-03 | Remove DNS Seeds run by entities which were never well-established. | Matt Corallo | |
2014-08-30 | Broken addresses on command line no longer trigger testnet. | Ross Nicoll | |
When passing a bitcoin: URI on the command line, invalid addresses do not incorrectly send the user to the test network. | |||
2014-08-28 | cleanup include of assert.h | Philip Kaufmann | |
2014-08-03 | Add built-in seeds for .onion | Wladimir J. van der Laan | |
This makes it possible for a node with `-onlynet=tor` to bootstrap itself. It also adds the base infrastructure for adding IPv6 seed nodes. Also represent IPv4 fixed seed addresses in 16-byte format. | |||
2014-07-14 | Merge pull request #4400 | Wladimir J. van der Laan | |
4eedf4f make RandAddSeed() use OPENSSL_cleanse() (Philip Kaufmann) 6354935 move rand functions from util to new random.h/.cpp (Philip Kaufmann) 001a53d add GetRandBytes() as wrapper for RAND_bytes() (Philip Kaufmann) | |||
2014-07-09 | Merge pull request #4340 | Wladimir J. van der Laan | |
33cc907 Add DNS seed of open-nodes.org (kevin) | |||
2014-07-09 | move rand functions from util to new random.h/.cpp | Philip Kaufmann | |
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. | |||
2014-06-23 | move pow constants to chainparams | jtimon | |
2014-06-21 | Add CMutableTransaction and make CTransaction immutable. | Pieter Wuille | |
In addition, introduce a cached hash inside CTransaction, to prevent recalculating it over and over again. | |||
2014-06-17 | Get rid of Params().RPCisTestNet() | jtimon | |
2014-06-16 | Remove `using namespace std` from header file | Wladimir J. van der Laan | |
It's considered bad form to import things into the global namespace in a header. Put it in the cpp files where it is needed instead. | |||
2014-06-15 | Add DNS seed of open-nodes.org | kevin | |
2014-06-12 | add NetworkIDString() to chainparams | Philip Kaufmann | |
- returns the BIP70 network string - use that new function in the core and GUI code and remove unused code and functions | |||
2014-06-12 | Add testnet DNS seed of Alex Kotenko. | Andreas Schildbach | |
2014-06-04 | Replace virtual methods with static attributes, chainparams.h depends on | jtimon | |
protocol.h instead of the other way around | |||
2014-06-04 | Add RPCisTestNet chain parameter | jtimon | |
2014-06-04 | Add RequireStandard chain parameter | jtimon | |
2014-06-04 | Add AllowMinDifficultyBlocks chain parameter | jtimon | |
2014-06-04 | Move majority constants to chainparams | jtimon | |
2014-06-04 | Add DefaultCheckMemPool chain parameter | jtimon | |
2014-06-04 | Add DefaultMinerThreads chain parameter | jtimon | |
2014-06-04 | Add MineBlocksOnDemand chain parameter | jtimon | |
2014-06-04 | Add MiningRequiresPeers chain parameter | jtimon | |
2014-05-09 | Move {Get,Set}Compact from bignum to uint256 | Pieter Wuille | |
2014-04-22 | script: switch outside users to CScriptNum | Cory Fields | |
2014-03-15 | Add new DNS seed from bitnodes.io. | Addy Yeow | |
2014-02-09 | Copyright header updates s/2013/2014 on files whose last git commit was done ↵ | gubatron | |
in 2014. contrib/devtools/fix-copyright-headers.py script to be able to perform this maintenance task with ease during the rest of the year, every year. Modifications to contrib/devtools/README.md to document what fix-copyright-headers.py does. | |||
2014-01-24 | Updated fallback seed nodes from sipa's DNS seeds | Gavin Andresen | |
2014-01-03 | Added new DNS seed from bitcoinstats.com. | Christian Decker | |
2013-11-10 | Cleanup code using forward declarations. | Brandon Dahler | |
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files. |