Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-18 | Merge pull request #2315 from sipa/loaderror | Gavin Andresen | |
Improve block database load error reporting | |||
2013-02-17 | Improve block database load error reporting | Pieter Wuille | |
2013-02-16 | Merge pull request #2283 from Diapolo/translations | Wladimir J. van der Laan | |
translations update (bitcoinstrings.cpp + bitcoin_en.ts) | |||
2013-02-11 | Merge pull request #2286 from gavinandresen/fix2285 | Gavin Andresen | |
Do not use C++11 std::vector.data() | |||
2013-02-09 | Use QImage.bits instead of QImage.constBits to ease backporting | Petter Reinholdtsen | |
Image.constBits was introduced in Qt 4.7. Should be ok here to use QImage.bits which allows linking against the Qt in Squeeze. | |||
2013-02-07 | Do not use C++11 std::vector.data() | Gavin Andresen | |
std::vector.data() is a C++11 feature that makes my OSX build machine unhappy. | |||
2013-02-07 | translations update (bitcoinstrings.cpp + bitcoin_en.ts) | Philip Kaufmann | |
2013-02-06 | Merge commit 'd38c6488d067c2e88726e2ca99bc76fd67dab49b'v0.8.0rc1 | Gavin Andresen | |
2013-02-06 | Merge pull request #2279 from sipa/cvrbip30 | Gavin Andresen | |
Bugfix CValidationResult for BIP30 + add DoS | |||
2013-02-06 | Merge pull request #2264 from ↵ | Gavin Andresen | |
gmaxwell/signrawtransaction_for_regular_missing_txins Signrawtransaction shouldn't require redeemScript for non-p2sh txins. | |||
2013-02-06 | Bugfix CValidationResult for BIP30 + add DoS | Pieter Wuille | |
2013-02-05 | Do not call ResendWalletTransactions when reindexing, importing or on IBD | Rubén Darío Ponticelli | |
Calling ResendWalletTransactions when reindexing, importing or on IBD spams other nodes with our old transactions, because they become unconfirmed. | |||
2013-02-05 | Merge branch 'reindexgen' of git://github.com/sipa/bitcoin | Gavin Andresen | |
2013-02-05 | Merge pull request #2273 from gavinandresen/txsize | Gavin Andresen | |
Make transactions larger than 100K non-standard | |||
2013-02-05 | Make transactions larger than 100K non-standard | Gavin Andresen | |
Extremely large transactions with lots of inputs can cost the network almost as much to process as they cost the sender in fees. We would never create transactions larger than 100K big; this change makes transactions larger than 100K non-standard, so they are not relayed/mined by default. This is most important for miners that might create blocks larger than 250K big, who could be vulnerable to a make-your-blocks-so-expensive-to-verify-they-get-orphaned attack. | |||
2013-02-04 | Merge pull request #2253 from luke-jr/bugfix_valstate | Gavin Andresen | |
Bugfixes for CValidationState | |||
2013-02-04 | Merge pull request #2237 from petertodd/testnet-dnsseed | Jeff Garzik | |
Add DNS seed support for testnet | |||
2013-02-01 | Signrawtransaction shouldn't require redeemScript for non-p2sh txins. | Gregory Maxwell | |
The redeemScript functionality broke plain offline signing, this change makes it only look for that parameter when signing a p2sh input. | |||
2013-02-01 | Make sure the genesis block is present after reindex | Pieter Wuille | |
2013-02-01 | translations update (bitcoinstrings.cpp and bitcoin_en.ts) | Philip Kaufmann | |
2013-02-01 | Bitcoin-Qt: better copyright year handling in AboutDialog | Philip Kaufmann | |
- this change allows us to keep the translation without the need to re-translate any string, when we update the copyright year - copyright symbol is changed to HTML to ensure we get no encoding issues and it's removed from the translation string so translators don't break it by mistake | |||
2013-01-31 | Bugfix: Enable ConnectBestBlock to properly report back validation problems, ↵ | Luke Dashjr | |
and ensure orphan processing (when their parents are found) cannot be used to counter-DDoS the node providing the parent Also fix a minor typo | |||
2013-01-30 | Merge pull request #2245 from gavinandresen/check216116 | Gavin Andresen | |
New checkpoint at block 216116 for the 0.8.0 release | |||
2013-01-30 | Merge pull request #2236 from sipa/largefiles | Gavin Andresen | |
Support large files on 32-bit Linux | |||
2013-01-30 | Prevent Qt crash at startup with an empty data directory | Gavin Andresen | |
2013-01-30 | Bump version numbers for 0.8 release | Gavin Andresen | |
Version numbers changed from 0.7.99 to 0.8.0 Set CLIENT_VERSION_IS_RELEASE to remove pre-release warning Updated copyright in COPYING and doc/READMEs to 2013 Updated doc/release-notes.txt | |||
2013-01-30 | Correctly randomize change output position | Gavin Andresen | |
2013-01-30 | New checkpoint at block 216116 for the 0.8.0 release | Gavin Andresen | |
2013-01-30 | Support large files on 32-bit Linux | Pieter Wuille | |
2013-01-29 | Add DNS seed support for testnet | Peter Todd | |
2013-01-29 | Merge pull request #2224 from sipa/valstate | Gavin Andresen | |
Improve error handling during validation | |||
2013-01-30 | Deal with LevelDB errors | Pieter Wuille | |
2013-01-29 | Fix two clang3.3 warnings | Gavin Andresen | |
2013-01-30 | Improve dealing with abort conditions | Pieter Wuille | |
2013-01-30 | Add disk space checks before flushing CCoins cache | Pieter Wuille | |
2013-01-30 | Treat coinbase value violation as DoS | Pieter Wuille | |
2013-01-30 | CValidationState framework | Pieter Wuille | |
2013-01-29 | Merge pull request #2231 from sipa/cleanups | Jeff Garzik | |
Two cleanups before 0.8 | |||
2013-01-29 | New seed nodes, from http://bitcoin.sipa.be/seeds.txt | Gavin Andresen | |
2013-01-28 | Rename database directories | Pieter Wuille | |
2013-01-28 | Remove support for pre-checksum undo files | Pieter Wuille | |
2013-01-28 | Merge pull request #1549 from TheBlueMatt/addnoderpc | Gavin Andresen | |
Addnode optimization and addnode access via RPC | |||
2013-01-28 | Merge pull request #2223 from gavinandresen/nonfinalnonstandard | Gavin Andresen | |
Treat non-final transactions as non-standard | |||
2013-01-27 | Try more than the first address for a DNS -addnode. | Matt Corallo | |
2013-01-27 | Add a getaddednodeinfo RPC. | Matt Corallo | |
2013-01-27 | Add addnode RPC command. | Matt Corallo | |
2013-01-27 | Make ThreadOpenAddedConnections2 exit quicker if(GetNameProxy()). | Matt Corallo | |
2013-01-27 | Use a copy in place of mapMultiArgs["-addnode"]. | Matt Corallo | |
Also moves the DNS lookup of -addnode nodes into the repeated loop, allowing -addnode to follow DNS changes. | |||
2013-01-26 | Treat non-final transactions as non-standard | Gavin Andresen | |
At least one service that accepted zero-confirmation transactions was vulnerable because an attacker could send a transaction with a lock time far in the future, and then have plenty of time in which to get a double-spend mined (perhaps from a miner who wasn't on the network when the first transaction was broadcast). That is a variation on the "Finney attack". We still don't recommend anybody accept 0-confirmation transactions as final payment for anything. This change keeps non-final transactions from appearing in the wallet, and, assuming most of the network accepts this change, will prevent them from being relayed until they are final. | |||
2013-01-26 | Merge pull request #2182 from gavinandresen/addressoracle | Gavin Andresen | |
Remove IsFromMe() check in CTxMemPool::accept() |