1. 21 Mar, 2016 1 commit
  2. 18 Mar, 2016 1 commit
  3. 24 Feb, 2016 1 commit
  4. 15 Dec, 2015 1 commit
  5. 03 Dec, 2015 1 commit
  6. 29 Nov, 2015 2 commits
  7. 26 Nov, 2015 1 commit
  8. 15 Nov, 2015 1 commit
  9. 13 Nov, 2015 1 commit
  10. 12 Nov, 2015 2 commits
  11. 11 Nov, 2015 1 commit
  12. 23 Oct, 2015 1 commit
  13. 17 Oct, 2015 1 commit
    • Mitchell Cash's avatar
      Correct spelling mistakes in doc folder · c2e0c613
      Mitchell Cash authored
      - OSX —> OS X
      - XCode —> Xcode
      - github —> GitHub
      - homebrew —> Homebrew
      - gitian —> Gitian
      - Other miscellaneous obvious spelling fixes and whitespace removal
      c2e0c613
  14. 05 Oct, 2015 1 commit
  15. 29 Sep, 2015 1 commit
  16. 22 Sep, 2015 2 commits
    • Pieter Wuille's avatar
      Do not store Merkle branches in the wallet. · 91242afd
      Pieter Wuille authored
      Assume that when a wallet transaction has a valid block hash and transaction position
      in it, the transaction is actually there. We're already trusting wallet data in a
      much more fundamental way anyway.
      
      To prevent backward compatibility issues, a new record is used for storing the
      block locator in the wallet. Old wallets will see a wallet file synchronized up
      to the genesis block, and rescan automatically.
      91242afd
    • MarcoFalke's avatar
      [trivial] Minor format fixes · dfe3763b
      MarcoFalke authored
      dfe3763b
  17. 08 Sep, 2015 1 commit
  18. 07 Sep, 2015 1 commit
  19. 04 Sep, 2015 1 commit
  20. 03 Sep, 2015 1 commit
  21. 03 Aug, 2015 1 commit
  22. 30 Jul, 2015 1 commit
    • mruddy's avatar
      Resolve issue 3166. · 2a8b5a5d
      mruddy authored
      These changes decode valid SIGHASH types on signatures in assembly (asm) representations of scriptSig scripts.
      This squashed commit incorporates substantial helpful feedback from jtimon, laanwj, and sipa.
      2a8b5a5d
  23. 27 Jul, 2015 2 commits
  24. 13 Jul, 2015 1 commit
  25. 01 Jun, 2015 1 commit
  26. 29 May, 2015 1 commit
  27. 26 May, 2015 2 commits
  28. 11 Dec, 2014 1 commit
  29. 02 Dec, 2014 1 commit
  30. 04 Nov, 2014 1 commit
    • Daniel Kraft's avatar
      Add "warmup mode" for RPC server. · 775aace7
      Daniel Kraft authored
      Start the RPC server before doing all the (expensive) startup
      initialisations like loading the block index.  Until the node is ready,
      return all calls immediately with a new error signalling "in warmup"
      with an appropriate status message (similar to the init message).
      
      This is useful for RPC clients to know that the server is there (e. g.,
      they don't have to start it) but not yet available.  It is used in
      Namecoin and Huntercoin already for some time, and there exists a UI
      hooked onto the RPC interface that actively uses this to its advantage.
      775aace7
  31. 23 Oct, 2014 1 commit
  32. 21 Oct, 2014 1 commit
  33. 21 Jul, 2014 2 commits
  34. 03 Jul, 2014 1 commit
    • Gavin Andresen's avatar
      Use fee/priority estimates in wallet CreateTransaction · 5706875e
      Gavin Andresen authored
      The wallet now uses the mempool fee estimator with a new
      command-line option: -txconfirmtarget (default: 1) instead
      of using hard-coded fees or priorities.
      
      A new bitcoind that hasn't seen enough transactions to estimate
      will fall back to the old hard-coded minimum priority or
      transaction fee.
      
      -paytxfee option overrides -txconfirmtarget.
      
      Relaying and mining code isn't changed.
      
      For Qt, the coin control dialog now uses priority estimates to
      label transaction priority (instead of hard-coded constants);
      unspent outputs were consistently labeled with a much higher
      priority than is justified by the free transactions actually
      being accepted into blocks.
      
      I did not implement any GUI for setting -txconfirmtarget; I would
      suggest getting rid of the "Pay transaction fee" GUI and replace
      it with either "target number of confirmations" or maybe
      a "faster confirmation <--> lower fee" slider or select box.
      5706875e