| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add a fresh set of fixed and DNS seeds. | langerhans | 2015-06-29 | 1 | -78/+59 |
| | | |||||
| * | Merge pull request #549 from leofidus/1.7-rpctests | leofidus | 2014-06-07 | 1 | -0/+1 |
| |\ | | | | | Fix bash-based rpc tests | ||||
| | * | Make rewards in regtest mode less random | Jannis Froese | 2014-06-02 | 1 | -0/+1 |
| | | | | | | | | | | | This allows sane testing. Regtest mode is primarily intended for automated testing, so this simplification makes sense | ||||
| * | | script: switch outside users to CScriptNum | Cory Fields | 2014-05-29 | 1 | -1/+1 |
| |/ | |||||
| * | Revert "Hardcode testnet for first alpha release." | langerhans | 2014-04-09 | 1 | -1/+1 |
| | | | | | This reverts commit b16685ca0d0e00424281e0af2f346ff60ace53bf. | ||||
| * | Change sanitizing | Alan Westbrook | 2014-04-05 | 1 | -2/+2 |
| | | | | | | Sanitize the type fix changes Add a couple more while we are in there, really, int is not a size type. | ||||
| * | Lets get at least dogecoind building | Alan Westbrook | 2014-04-05 | 1 | -10/+27 |
| | | | | | | This is an Xcode project and a script to wrangle boost to work on the mac. | ||||
| * | add testnet seeds | Jannis Froese | 2014-04-04 | 1 | -4/+3 |
| | | |||||
| * | Hardcode testnet for first alpha release.v1.7.0-Alpha-1 | langerhans | 2014-04-03 | 1 | -1/+1 |
| | | |||||
| * | Add pnSeed array. Generated from the official dogecoin.com DNS seed. | langerhans | 2014-04-03 | 1 | -1/+75 |
| | | |||||
| * | Added Dogechain to DNS seeds. | Ross Nicoll | 2014-03-30 | 1 | -0/+1 |
| | | |||||
| * | set Dogecoin alert keys | Jannis Froese | 2014-03-29 | 1 | -4/+2 |
| | | |||||
| * | credit where credit is due | Jannis Froese | 2014-03-22 | 1 | -0/+2 |
| | | | | | (cherry picked from commit 5cdcfa9a2b445dd8f8009f6ff3a8ded4ee6515e6) | ||||
| * | fix regtest network | Jannis Froese | 2014-03-22 | 1 | -4/+1 |
| | | | | | (cherry picked from commit 86bf022cb3a0439bc9b17a915aceedf727f144a3) | ||||
| * | Protocol changes for Dogecoin 1.5 | Jannis Froese | 2014-03-22 | 1 | -116/+45 |
| | | | | | | | ported over from Dogecoin and Litecoin (cherry picked from commit 8b09dad2d506fc5a6239863b1c0e33bf7e84da00) | ||||
| * | Copyright header updates s/2013/2014 on files whose last git commit was done ↵ | gubatron | 2014-02-09 | 1 | -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 seeds | Gavin Andresen | 2014-01-24 | 1 | -75/+75 |
| | | |||||
| * | Added new DNS seed from bitcoinstats.com. | Christian Decker | 2014-01-03 | 1 | -0/+1 |
| | | |||||
| * | Cleanup code using forward declarations. | Brandon Dahler | 2013-11-10 | 1 | -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 2013 | super3 | 2013-10-20 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #2829 from sipa/bip32 | Gavin Andresen | 2013-08-15 | 1 | -11/+14 |
| |\ | | | | | BIP 32 derivation + test vectors | ||||
| | * | BIP32 derivation implementation | Pieter Wuille | 2013-07-15 | 1 | -0/+4 |
| | | | |||||
| | * | Generalize version bytes | Pieter Wuille | 2013-06-24 | 1 | -11/+10 |
| | | | |||||
| * | | Add missing 0x prefix in chainparams.cpp | Roman Mindalev | 2013-08-12 | 1 | -1/+1 |
| | | | |||||
| * | | main.h->core.h include dependency improvements. | Jeff Garzik | 2013-06-24 | 1 | -1/+2 |
| |/ | |||||
| * | Introduce a CChainParameters singleton class and regtest mode. | Mike Hearn | 2013-06-19 | 1 | -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. | |||||