1. 12 Mar, 2015 4 commits
  2. 11 Mar, 2015 5 commits
    • Wladimir J. van der Laan's avatar
      Merge pull request #5871 · 8d0c36e4
      Wladimir J. van der Laan authored
      3aa0130b test: remove fSkipProofOfWork (Wladimir J. van der Laan)
      59bd89f1 test: Remove UNITTEST params (Wladimir J. van der Laan)
      8d0c36e4
    • Wladimir J. van der Laan's avatar
      Merge pull request #5749 · f200a3be
      Wladimir J. van der Laan authored
      f7547079 Fix - bitcoin-qt usage message (Luca Venturini)
      1fdb9fa3 Help messages correctly formatted (79 chars) (Luca Venturini)
      f200a3be
    • Wladimir J. van der Laan's avatar
      Merge pull request #5864 · 60f18319
      Wladimir J. van der Laan authored
      bb6acff0 fix possible block db breakage during re-index (Cory Fields)
      60f18319
    • Luca Venturini's avatar
      Fix - bitcoin-qt usage message · ac6b64dc
      Luca Venturini authored
      . Closes the bug from commit e179eb3d
      ("bitcoin-qt -help" did not show any message)
      . Move all the options in init.cpp (there were already some
      options related to bitcoin-qt)
      ac6b64dc
    • Luca Venturini's avatar
      Help messages correctly formatted (79 chars) · 6596093c
      Luca Venturini authored
      Help messages are formatted programmatically with FormatParagraph
      in order not to break existing strings in Transifex.
      
      The new format works even if the translation of the strings
      modifies the lenght of the message.
      
      Sqashed 6 commits in a single one.
      Help messages correctly formatted for SVGA text mode (132 chars)
      
      Help messages are formatted programmatically with FormatParagraph
      in order not to break existing strings in Transifex.
      
      The new format should work even if the translation of the strings
      modifies the lenght of the message.
      
      Fix - syntax error
      
      Correct formatting for 79 chars
      
      Correctly based on C++ functions
      
      Removed spare spaces from option strings
      
      Fix - syntax error
      6596093c
  3. 10 Mar, 2015 1 commit
    • Cory Fields's avatar
      fix possible block db breakage during re-index · 9ac9ff2c
      Cory Fields authored
      When re-indexing, there are a few cases where garbage data may be skipped in
      the block files. In these cases, the indices are correctly written to the index
      db, however the pointer to the next position for writing in the current block
      file is calculated by adding the sizes of the valid blocks found.
      
      As a result, when the re-index is finished, the index db is correct for all
      existing blocks, but the next block will be written to an incorrect offset,
      likely overwriting existing blocks.
      
      Rather than using the sum of all valid blocks to determine the next write
      position, use the end of the last block written to the file. Don't assume that
      the current block is the last one in the file, since they may be read
      out-of-order.
      9ac9ff2c
  4. 09 Mar, 2015 10 commits
  5. 07 Mar, 2015 1 commit
  6. 06 Mar, 2015 19 commits