1. 12 Feb, 2018 1 commit
  2. 11 Jan, 2018 1 commit
  3. 15 Jan, 2017 1 commit
  4. 06 Dec, 2016 1 commit
  5. 11 Nov, 2016 1 commit
    • infernoman's avatar
      change dash-cli -> crown-cli · 84c26ca7
      infernoman authored
      change dash-tx -> crown-tx
      
      change dash-config.h
      
      change das
      h- -> crown-
      
      change dashrpc->crownrpc
      
      change dash_qt -> crown_qt
      
      change dash_cli -> crown_cli
      
      chang
      e dash_tx -> crown_tx
      
      change test_dash -> test_crown
      
      
      Former-commit-id: f22ef63258e4b6b7ae790be64ba079162262415f
      84c26ca7
  6. 27 Oct, 2016 1 commit
  7. 19 Oct, 2016 1 commit
    • Infernoman's avatar
      Dash->Crown · e3518b4d
      Infernoman authored
      Former-commit-id: ec56b0a1d855649c5e0d920b89ce69293b99c25d
      e3518b4d
  8. 04 Nov, 2015 1 commit
  9. 11 Oct, 2015 1 commit
  10. 12 Jul, 2015 1 commit
  11. 16 Jun, 2015 1 commit
  12. 19 Mar, 2015 1 commit
  13. 17 Mar, 2015 1 commit
  14. 19 Feb, 2015 2 commits
  15. 16 Feb, 2015 1 commit
  16. 04 Feb, 2015 1 commit
  17. 11 Dec, 2014 1 commit
  18. 09 Dec, 2014 1 commit
  19. 20 Nov, 2014 1 commit
  20. 18 Nov, 2014 1 commit
  21. 31 Oct, 2014 1 commit
  22. 24 Oct, 2014 1 commit
  23. 17 Oct, 2014 1 commit
  24. 19 Sep, 2014 1 commit
  25. 16 Sep, 2014 1 commit
  26. 19 Aug, 2014 1 commit
  27. 18 Aug, 2014 1 commit
    • Jeff Garzik's avatar
      Univalue: Do not build JSON escape list at runtime · 802e2364
      Jeff Garzik authored
      No need to waste startup time building something that can be done
      at compile time.
      
      This also resolves a clang++ warning originally reported in #4714,
      univalue/univalue_write.cpp:33:12: warning: array subscript is of type 'char
      escapes['"'] = "\\"";
      ^~~~
      
      etc.
      802e2364
  28. 29 Jul, 2014 1 commit
    • Jeff Garzik's avatar
      Add "bitcoin-tx" command line utility and supporting modules. · 3eb20d54
      Jeff Garzik authored
      This is a simple utility that provides command line manipulation of
      a hex-encoded TX. The utility takes a hex string on the command line
      as input, performs zero or more mutations, and outputs a hex string
      to standard output.
      
      This utility is also an intentional exercise of the "bitcoin library"
      concept. It is designed to require minimal libraries, and works
      entirely without need for any RPC or P2P communication.
      
      See "bitcoin-tx --help" for command and options summary.
      3eb20d54
  29. 04 Jul, 2014 1 commit
  30. 25 Jun, 2014 1 commit
    • Drak's avatar
      Update .gitignore · b52a5af1
      Drak authored
      Removing old file ignores so they show up in `git status`
      b52a5af1
  31. 22 Mar, 2014 1 commit
    • Chris Beams's avatar
      Ignore temporary object files · ffde86c2
      Chris Beams authored
      Prior to this change, `git status` would report untracked files of the
      following sort if run during a build:
      
          ?? src/rpcprotocol.o-e628def3
      
      These files should be explicitly ignored not only because they are a
      nuisance, but given that they appear and disappear quickly, they may be
      inadvertently added to the index even if one has been careful to check
      for untracked files with `git status` prior to a `git add .`.
      ffde86c2
  32. 13 Jan, 2014 1 commit
  33. 02 Nov, 2013 1 commit
  34. 21 Oct, 2013 1 commit
    • Wladimir J. van der Laan's avatar
      Add separate bitcoin-rpc client · 7389d39c
      Wladimir J. van der Laan authored
      This adds an executable `bitcoin-rpc` that only serves as a Bitcoin RPC
      client.
      The commit does not remove RPC functionality from the `bitcoind` yet,
      this functionality should be deprecated but is left for a later version
      to give users some time to switch.
      7389d39c
  35. 16 Sep, 2013 1 commit
    • Cory Fields's avatar
      included-tests: generate binary data from test files for inclusion into test binaries · 09cc4490
      Cory Fields authored
      This change moves test data into the binaries rather than reading them from
      the disk at runtime.
      
      Advantages:
      - Tests become distributable
      - Cross-compile friendly. Build on one machine and execute in an arbitrary
        location on another.
      - Easier testing for backports. Users can verify that tests pass without having
        to track down corresponding test data.
      - More trustworthy test results and easier quality assurance as tests make
        fewer assumptions about their environment.
      - Tests could theoretically run at client/daemon startup and exit on failure.
      
      Disadvantages:
      - Required 'hexdump' build-dependency. This is a standard bsd tool that should
        be usable everywhere. It is likely already installed on all build-machines.
      - Tests can no longer be fudged after build by altering test-data.
      09cc4490
  36. 06 Sep, 2013 1 commit
  37. 17 Aug, 2013 1 commit
    • Pieter Wuille's avatar
      Squashed 'src/leveldb/' changes from ae6c262..a02ddf9 · 84d6d69f
      Pieter Wuille authored
      a02ddf9 Added GNU/kFreeBSD kernel name (TARGET_OS)
      8487468 CondVar::SignalAll was broken, leading to deadlocks on Windows builds. http://code.google.com/p/leveldb/issues/detail?id=149
      f6d84d1 Allow files to be opened for reading multiple times
      cb8e3f7 Checking whether closing succeeds
      d5317e8 Print actual Win32 error that occurred on file creation failure.
      907f308 Port leveldb to MinGW32
      9def2bf Mingw support for Windows LevelDB port
      0a7b074 Pre-Vista leveldb::port::InitOnce implementation
      31a2b09 Native Windows LevelDB port
      058a035 Remove Snappy support
      5bd76dc Release leveldb 1.12
      7b094f1 Release leveldb 1.11
      28dad91 Release leveldb 1.10
      514c943 Make DB::Open fail if sst files are missing.
      d84c825 Fix corruption bug found and analyzed by dhruba@gmail.com
      ea2e919 added utility to dump leveldb files
      REVERT: ae6c262 Merge branch 'leveldb' into ripple-fork
      REVERT: 28fa222 Looks like a bit more delay is needed to smooth the latency.
      REVERT: a18f3e6 Tidy up JobQueue, add ripple_core module
      REVERT: ab82e57 Release leveldb 1.12
      REVERT: 02c6259 Release leveldb 1.11
      REVERT: 5bbb544 Rate limit compactions with a 25ms pause after each complete file.
      REVERT: 8c29c47 LevelDB issue 178 fix: cannot resize a level 0 compaction set
      REVERT: 18b245c Added GNU/kFreeBSD kernel name (TARGET_OS)
      REVERT: 8be9d12 CondVar::SignalAll was broken, leading to deadlocks on Windows builds. http://code.google.com/p/leveldb/issues/detail?id=149
      REVERT: c9fc070 Upgrade LevelDB to 1.10.0, mostly for better write stall logging.
      REVERT: 8215b15 Tweak to variable name to support unity build
      REVERT: aca1ffc Allow files to be opened for reading multiple times
      REVERT: 693a70c Checking whether closing succeeds
      REVERT: 0144d04 Print actual Win32 error that occurred on file creation failure.
      REVERT: 43ed517 Fix corruption bug found and analyzed by dhruba@gmail.com
      REVERT: 413c74c added utility to dump leveldb files
      REVERT: 96eda85 Port leveldb to MinGW32
      REVERT: 0967260 Mingw support for Windows LevelDB port
      REVERT: ee3f9bd Pre-Vista leveldb::port::InitOnce implementation
      REVERT: f5d0a41 Native Windows LevelDB port
      REVERT: 28b35f1 Remove Snappy support
      
      git-subtree-dir: src/leveldb
      git-subtree-split: a02ddf9b14d145e88185ee209ab8b01d8826663a
      84d6d69f
  38. 04 May, 2013 1 commit
  39. 26 Apr, 2013 1 commit