aboutsummaryrefslogtreecommitdiff
path: root/src/chainparams.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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.