1. 11 Nov, 2013 2 commits
  2. 10 Nov, 2013 3 commits
  3. 04 Nov, 2013 3 commits
  4. 31 Oct, 2013 2 commits
  5. 30 Oct, 2013 1 commit
    • Philip Kaufmann's avatar
      re-work -debug switch handling · a26f6964
      Philip Kaufmann authored
      - re-work -debug help message text
      - make -debug log every debugging information again (even all categories)
      - remove unneeded fDebug checks in front of LogPrint()/qDebug(), as that
        check is done in LogPrintf() when category is != NULL (true for all
        LogPrint() calls
      - remove fDebug ONLY in code which is NOT performance-critical
      - harmonize addrman category name
      - deprecate -debugnet usage, should be used via -debug=net and remove the
        corresponding global
      a26f6964
  6. 28 Oct, 2013 1 commit
  7. 27 Oct, 2013 1 commit
  8. 26 Oct, 2013 7 commits
  9. 20 Oct, 2013 1 commit
  10. 15 Oct, 2013 4 commits
  11. 11 Oct, 2013 1 commit
  12. 07 Oct, 2013 1 commit
  13. 04 Oct, 2013 4 commits
    • Gavin Andresen's avatar
      Lower maximum size for free transaction creation · db06de9a
      Gavin Andresen authored
      Changes the maximum size of a free transaction that will be created
      from 10,000 bytes to 1,000 bytes.
      
      The idea behind this change is to make the free transaction area
      available to a greater number of people; with the default 27K-per-block,
      just three very-large very-high-priority transactions could fill the space.
      db06de9a
    • Gavin Andresen's avatar
      Remove CENT-output free transaction rule when relaying · 11e967fa
      Gavin Andresen authored
      Remove the (relay/mempool) rule that all outputs of free transactions
      must be greater than 0.01 XBT. Dust spam is now taken care of by making
      dusty outputs non-standard.
      11e967fa
    • Josh Lehan's avatar
      Added ping time measurement. · 95a61d8b
      Josh Lehan authored
      New RPC "ping" command to request ping.
      Implemented "pong" message handler.
      New "pingtime" field in getpeerinfo, to provide results to user.
      New "pingwait" field, to show pings still in flight, to better see newly lagging peers.
      95a61d8b
    • Philip Kaufmann's avatar
      special case DoS value == 0 in ProcessMessage() · c3d88657
      Philip Kaufmann authored
      - prevents unneeded log messages, which could make users think something
        bad was happening
      c3d88657
  14. 02 Oct, 2013 1 commit
  15. 25 Sep, 2013 1 commit
  16. 24 Sep, 2013 1 commit
  17. 18 Sep, 2013 1 commit
  18. 09 Sep, 2013 2 commits
    • Philip Kaufmann's avatar
      fix some cosmetic glitches in the codebase · 3704d9b0
      Philip Kaufmann authored
      - rename URL into URI in paymentserver where correct
      - add some missing Qt-coding-stuff in paymentserver
      - change QSpinBox to QLineEdit as base for BitcoinAmountField in .ui files
        (as this is the result when converting the BAF back into base)
      - remove some c_str() and replace with QString::fromStdString()
      - remove several new-lines
      - remove unneeded spaces
      - indentation fixes
      3704d9b0
    • Gregory Maxwell's avatar
      Longer term workaround for chainstate corruption from negative versions. · 4035c909
      Gregory Maxwell authored
      This also makes negative transaction versions non-standard.
      
      This avoids an issue triggered in block 256818 where transactions with
      negative version numbers were incorrectly serialized into the UTXO set.
      
      On restart nodes detect the inconsistency and refuse to start so long as
      a block with these transactions is inside the self-consistency check
      window, logging "coin database inconsistencies found". The software
      recommends reindexing, but reindexing does not correct the problem.
      
      This should be fixed by changing the chainstate serialization, but
      working around it seems harmless for now because the version is not
      used by any network rule currently.
      
      A patch free workaround is to start with -checklevel=2 which skips
      the consistency checks, but the IsStandard change is important for
      miners in order to protect unpatched nodes.
      4035c909
  19. 04 Sep, 2013 1 commit
  20. 28 Aug, 2013 2 commits
    • Gregory Maxwell's avatar
      [raw] reject insanely high fees by default in sendrawtransaction · 205f7dfc
      Gregory Maxwell authored
      There have been several incidents where mainnet experimentation with
       raw transactions  resulted in insane fees.  This is hard to prevent
       in the raw transaction api because the inputs may not be known.
       Since sending doesn't work if the inputs aren't known, we can catch
       it there.
      
      This rejects fees > than 10000 * nMinRelayTxFee or 1 BTC with the
       defaults and can be overridden with a bool at the rpc.
      205f7dfc
    • Gregory Maxwell's avatar
      [wallet] Consider generated coins mature at COINBASE_MATURITY+1 · 2c45c6bf
      Gregory Maxwell authored
      We're not seeing large reorgs that would justify waiting a large
       amount past the rule required maturity, and the extra three
       hours is just a nuisance. Take one more block to at least give
       the 100th block time to propagate.
      2c45c6bf