Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-03 | VC2010 compile fixes | Wladimir J. van der Laan | |
2012-04-02 | Bump version to 0.6.0.99 for 0.6.1 merge window | Gavin Andresen | |
2012-03-29 | Bump version to 0.6.0rc6 | Gavin Andresen | |
2012-03-26 | Update version to 60005 (0.6.0rc5)v0.6.0rc5 | Gavin Andresen | |
2012-03-26 | Begin doxygen-compatible comments | Pieter Wuille | |
2012-03-16 | Bump CLIENT_VERSION for rc4 releasev0.6.0rc4 | Gregory Maxwell | |
2012-03-13 | Bump CLIENT_VERSION for rc3 releasev0.6.0rc3 | Gavin Andresen | |
2012-03-12 | Limit the impact of reorganisations on the database | Pieter Wuille | |
Sometimes a new block arrives in a new chain that was already the best valid one, but wasn't marked that way. This happens for example when network rules change to recover after a fork. In this case, it is not necessary to do the entire reorganisation inside a single db commit. These can become huge, and exceed the objects/lockers limits in bdb. This patch limits the blocks the actual reorganisation is applied to, and adds the next blocks afterwards in separate db transactions. | |||
2012-02-29 | DoS fix for mapOrphanTransactionsv0.6.0rc2 | Gavin Andresen | |
2012-02-26 | bitcoind changes to stop storing settings in wallet.dat. | Gavin Andresen | |
2012-02-16 | Fix issue #848 : broken mining on testnet | Gavin Andresen | |
2012-02-07 | Update all copyrights to 2012 | Gavin Andresen | |
2012-02-07 | Increase client version to 0.6 | Gavin Andresen | |
2012-02-06 | -bip16 option (default: 1) to support / not support BIP 16. And bumped ↵ | Gavin Andresen | |
default BIP16 switchover date from Feb 15 to Mar 1 | |||
2012-01-27 | Bitcoin-Qt signmessage GUI (pull request #582) | Luke Dashjr | |
2012-01-25 | Merge pull request #773 from gavinandresen/p2shSigOpCount | Gavin Andresen | |
Simplify counting of P2SH sigops to match BIP 16 | |||
2012-01-23 | Only store transactions with missing inputs in the orphan pool. | Gavin Andresen | |
All previous versions of bitcoin could store some types of invalid transactions in the orphan-transaction list. | |||
2012-01-20 | Simplify counting of P2SH sigops to match BIP 16 (thanks to Matt Corallo for ↵ | Gavin Andresen | |
prompting this). This also removes an un-needed sigops-per-byte check when accepting transactions to the memory pool (un-needed assuming only standard transactions are being accepted). And it only counts P2SH sigops after the switchover date. | |||
2012-01-14 | Separated COINBASE_FLAGS out into main.h and made RPC getmemorypool return it | Forrest Voight | |
2012-01-13 | Refactored ConnectInputs, so valid-transaction-checks are done before ↵ | Gavin Andresen | |
ECDSA-verifying signatures. | |||
2012-01-13 | Replace OP_EVAL (BIP 12) with Pay-to-script-hash (BIP 16). | Gavin Andresen | |
2012-01-12 | collect more info on tx pooling and block finding for getmininginfo | Luke Dashjr | |
2011-12-23 | New RPC commands: getblockhash and getblock | Gavin Andresen | |
2011-12-21 | Revert "Use standard C99 (and Qt) types for 64-bit integers" | Wladimir J. van der Laan | |
This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9. | |||
2011-12-20 | Use standard C99 (and Qt) types for 64-bit integers | Luke Dashjr | |
2011-12-20 | Merge pull request #677 from luke-jr/minfee_modes | Gavin Andresen | |
API: GetMinFee modes | |||
2011-12-20 | Merge branch 'op_eval' | Gavin Andresen | |
2011-12-19 | Use std::numeric_limits<> for typesafe INT_MAX/etc | Gavin Andresen | |
2011-12-19 | Use block times for 'hard' OP_EVAL switchover, and refactored EvalScript | Gavin Andresen | |
so it takes a flag for how to interpret OP_EVAL. Also increased IsStandard size of scriptSigs to 500 bytes, so a 3-of-3 multisig transaction IsStandard. | |||
2011-12-19 | OP_EVAL implementation | Gavin Andresen | |
OP_EVAL is a new opcode that evaluates an item on the stack as a script. It enables a new type of bitcoin address that needs an arbitrarily complex script to redeem. | |||
2011-12-19 | Merge pull request #574 from sipa/dumpprivkey | Gavin Andresen | |
Dumpprivkey | |||
2011-12-19 | Implement BIP 14 : separate protocol version from client version | Gavin Andresen | |
2011-12-17 | Preparations for key import/export | Pieter Wuille | |
2011-12-14 | GetMinFee takes a mode parameter (GMF_{BLOCK,RELAY,SEND}) instead of fForRelay | Luke Dashjr | |
2011-12-01 | Orphan block fill-up-memory attack prevention | Gavin Andresen | |
2011-12-01 | Moved checkpoints out of main, to prep for using them to help prevent DoS ↵ | Gavin Andresen | |
attacks | |||
2011-10-07 | Fix build on windows and mac | Gavin Andresen | |
Replaced all occurrences of #if* __WXMSW__ with WIN32, and all occurrences of __WXMAC_OSX__ with MAC_OSX, and made sure those are defined appropriately in the makefile and bitcoin-qt.pro. | |||
2011-10-01 | Added RPC call 'getmemorypool' that provides everything needed to construct ↵ | Forrest Voight | |
a block with a custom generation transaction and submit a solution getmemorypool [data] If [data] is not specified, returns data needed to construct a block to work on: "version" : block version "previousblockhash" : hash of current highest block "transactions" : contents of non-coinbase transactions that should be included in the next block "coinbasevalue" : maximum allowable input to coinbase transaction, including the generation award and transaction fees "time" : timestamp appropriate for next block "bits" : compressed target of next block If [data] is specified, tries to solve the block and returns true if it was successful. | |||
2011-09-26 | Merge pull request #517 from gavinandresen/DoSprevention | Gavin Andresen | |
Denial-of-service prevention | |||
2011-09-21 | Transaction/Block denial-of-service detection/response | Gavin Andresen | |
2011-09-16 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
2011-09-11 | clarify function signature (GetNumBlocksOfPeers) and use number of 'frozen' ↵ | Wladimir J. van der Laan | |
blocks as initial value for number of peer blocks | |||
2011-09-07 | Merge branch 'unique_coinbase' of ↵ | Gavin Andresen | |
git://gitorious.org/~Luke-Jr/bitcoin/luke-jr-bitcoin into unique_coinbase | |||
2011-09-06 | Bugfix: Use timestamp in coinbase rather than "bits", needed to ensure ↵ | Luke Dashjr | |
coinbase txn is unique even if address is the same | |||
2011-09-02 | update to work with new lock system, add protocol.* to build system | Wladimir J. van der Laan | |
2011-08-19 | Start moving protocol-specific code to protocol.[ch]pp | Giel van Schijndel | |
Move CMessageHeader from net.h to protocol.[ch]pp, with the implementation in the .cpp compilation unit (compiling once is enough). This commit does *not* and should not modify *any* code, it only moves it from net.h and splits it across protocol.cpp and protocol.hpp. Indentation changes aside the closest thing to a modification of code is the addition of the 'TODO' comment (the execution of which requires code modifications and thus doesn't belong in this commit). Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-08-19 | Make some global variables less-global (static) | Giel van Schijndel | |
Explicitly make these global variables less-global to reduce the maximum scope of this global state. In my experience global variables tend to be a major source of bugs. As such the less accessible they are the less likely they are to be the source of a bug. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-08-09 | Unify copyright notices. | Matt Corallo | |
To a variation on: // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers | |||
2011-07-17 | get rid of mapPubKeys | Pieter Wuille | |
Make CKeyStore's interface work on uint160's instead of pubkeys, so no separate global mapPubKeys is necessary anymore. | |||
2011-07-12 | Merge pull request #352 from TheBlueMatt/newenc | Jeff Garzik | |
Wallet Private Key Encryption (on CWallet) |