Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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-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-10 | remove wrong ; in chainparams.h and order includes | Philip Kaufmann | |
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 | Get rid of TestNet() | jtimon | |
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 | Get rid of RegTest() | 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 | Reduce bignum.h now it is only needed for scriptnum_tests | Pieter Wuille | |
2014-05-09 | Move {Get,Set}Compact from bignum to uint256 | Pieter Wuille | |
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. | |||
2013-10-15 | misc spelling / space / style fixes | Philip Kaufmann | |
2013-08-22 | GetDataDir(): cache paths for each network separately | Gavin Andresen | |
2013-08-15 | Merge pull request #2876 from sipa/fixreorgcrash | Gavin Andresen | |
Fix reorganization crash | |||
2013-08-15 | Mempool consistency check | Pieter Wuille | |
2013-07-15 | BIP32 derivation implementation | Pieter Wuille | |
2013-06-24 | Generalize version bytes | Pieter Wuille | |
2013-06-19 | Introduce a CChainParameters singleton class and regtest mode. | Mike Hearn | |
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. |