1. 29 Sep, 2014 1 commit
  2. 30 Aug, 2014 1 commit
  3. 28 Aug, 2014 1 commit
    • Philip Kaufmann's avatar
      add missing header end comments · 286f7757
      Philip Kaufmann authored
      - ensures a consistent usage in header files
      - also add a blank line after the copyright header where missing
      - also remove orphan new-lines at the end of some files
      286f7757
  4. 25 Jun, 2014 1 commit
    • Wladimir J. van der Laan's avatar
      Remove unnecessary dependencies for bitcoin-cli · 22f49b27
      Wladimir J. van der Laan authored
      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.
      22f49b27
  5. 23 Jun, 2014 1 commit
  6. 17 Jun, 2014 1 commit
  7. 16 Jun, 2014 1 commit
  8. 12 Jun, 2014 1 commit
  9. 10 Jun, 2014 1 commit
  10. 04 Jun, 2014 11 commits
  11. 09 May, 2014 2 commits
  12. 10 Nov, 2013 1 commit
    • Brandon Dahler's avatar
      Cleanup code using forward declarations. · e28f37ca
      Brandon Dahler authored
      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.
      e28f37ca
  13. 15 Oct, 2013 1 commit
  14. 22 Aug, 2013 1 commit
  15. 15 Aug, 2013 1 commit
  16. 14 Jul, 2013 1 commit
  17. 23 Jun, 2013 1 commit
  18. 19 Jun, 2013 1 commit
    • Mike Hearn's avatar
      Introduce a CChainParameters singleton class and regtest mode. · d4d533e0
      Mike Hearn authored
      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.
      d4d533e0