aboutsummaryrefslogtreecommitdiff
path: root/src/chainparams.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove DNS Seeds run by entities which were never well-established.Matt Corallo2014-09-031-1/+0
|
* cleanup include of assert.hPhilip Kaufmann2014-08-281-1/+2
|
* Add built-in seeds for .onionWladimir J. van der Laan2014-08-031-91/+27
| | | | | | | | | 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.
* Merge pull request #4400Wladimir J. van der Laan2014-07-141-0/+1
|\ | | | | | | | | | | 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)
| * move rand functions from util to new random.h/.cppPhilip Kaufmann2014-07-091-0/+1
| |
* | Merge pull request #4340Wladimir J. van der Laan2014-07-091-0/+1
|\ \ | |/ |/| | | 33cc907 Add DNS seed of open-nodes.org (kevin)
| * Add DNS seed of open-nodes.orgkevin2014-06-151-0/+1
| |
* | Remove unnecessary dependencies for bitcoin-cliWladimir J. van der Laan2014-06-251-24/+12
| | | | | | | | | | | | | | | | | | 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.
* | move pow constants to chainparamsjtimon2014-06-231-0/+7
| |
* | Add CMutableTransaction and make CTransaction immutable.Pieter Wuille2014-06-211-1/+1
| | | | | | | | | | In addition, introduce a cached hash inside CTransaction, to prevent recalculating it over and over again.
* | Get rid of Params().RPCisTestNet()jtimon2014-06-171-3/+0
| |
* | Remove `using namespace std` from header fileWladimir J. van der Laan2014-06-161-0/+1
| | | | | | | | | | 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.
* | add NetworkIDString() to chainparamsPhilip Kaufmann2014-06-121-0/+3
|/ | | | | | - returns the BIP70 network string - use that new function in the core and GUI code and remove unused code and functions
* Add testnet DNS seed of Alex Kotenko.Andreas Schildbach2014-06-121-0/+1
|
* Replace virtual methods with static attributes, chainparams.h depends onjtimon2014-06-041-25/+26
| | | | protocol.h instead of the other way around
* Add RPCisTestNet chain parameterjtimon2014-06-041-0/+1
|
* Add RequireStandard chain parameterjtimon2014-06-041-0/+2
|
* Add AllowMinDifficultyBlocks chain parameterjtimon2014-06-041-0/+2
|
* Move majority constants to chainparamsjtimon2014-06-041-0/+9
|
* Add DefaultCheckMemPool chain parameterjtimon2014-06-041-0/+1
|
* Add DefaultMinerThreads chain parameterjtimon2014-06-041-0/+2
|
* Add MineBlocksOnDemand chain parameterjtimon2014-06-041-0/+1
|
* Add MiningRequiresPeers chain parameterjtimon2014-06-041-0/+1
|
* Move {Get,Set}Compact from bignum to uint256Pieter Wuille2014-05-091-2/+2
|
* script: switch outside users to CScriptNumCory Fields2014-04-221-1/+1
|
* Add new DNS seed from bitnodes.io.Addy Yeow2014-03-151-0/+1
|
* Copyright header updates s/2013/2014 on files whose last git commit was done ↵gubatron2014-02-091-1/+1
| | | | | | 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.
* Updated fallback seed nodes from sipa's DNS seedsGavin Andresen2014-01-241-75/+75
|
* Added new DNS seed from bitcoinstats.com.Christian Decker2014-01-031-0/+1
|
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-3/+3
| | | | | | | | | 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.
* Bump Year Number to 2013super32013-10-201-1/+1
|
* Merge pull request #2829 from sipa/bip32Gavin Andresen2013-08-151-11/+14
|\ | | | | BIP 32 derivation + test vectors
| * BIP32 derivation implementationPieter Wuille2013-07-151-0/+4
| |
| * Generalize version bytesPieter Wuille2013-06-241-11/+10
| |
* | Add missing 0x prefix in chainparams.cppRoman Mindalev2013-08-121-1/+1
| |
* | main.h->core.h include dependency improvements.Jeff Garzik2013-06-241-1/+2
|/
* Introduce a CChainParameters singleton class and regtest mode.Mike Hearn2013-06-191-0/+286
The new class is accessed via the Params() method and holds most things that vary between main, test and regtest networks. The regtest mode has two purposes, one is to run the bitcoind/bitcoinj comparison tool which compares two separate implementations of the Bitcoin protocol looking for divergence. The other is that when run, you get a local node which can mine a single block instantly, which is highly convenient for testing apps during development as there's no need to wait 10 minutes for a block on the testnet.