aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-02-06Merge commit 'd38c6488d067c2e88726e2ca99bc76fd67dab49b'v0.8.0rc1Gavin Andresen
2013-02-06Merge pull request #2279 from sipa/cvrbip30Gavin Andresen
Bugfix CValidationResult for BIP30 + add DoS
2013-02-06Merge pull request #2264 from ↵Gavin Andresen
gmaxwell/signrawtransaction_for_regular_missing_txins Signrawtransaction shouldn't require redeemScript for non-p2sh txins.
2013-02-06Bugfix CValidationResult for BIP30 + add DoSPieter Wuille
2013-02-05Do not call ResendWalletTransactions when reindexing, importing or on IBDRubé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-05Merge branch 'reindexgen' of git://github.com/sipa/bitcoinGavin Andresen
2013-02-05Merge pull request #2273 from gavinandresen/txsizeGavin Andresen
Make transactions larger than 100K non-standard
2013-02-05Make transactions larger than 100K non-standardGavin 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-04Merge pull request #2253 from luke-jr/bugfix_valstateGavin Andresen
Bugfixes for CValidationState
2013-02-04Merge pull request #2237 from petertodd/testnet-dnsseedJeff Garzik
Add DNS seed support for testnet
2013-02-01Signrawtransaction 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-01Make sure the genesis block is present after reindexPieter Wuille
2013-02-01translations update (bitcoinstrings.cpp and bitcoin_en.ts)Philip Kaufmann
2013-02-01Bitcoin-Qt: better copyright year handling in AboutDialogPhilip 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-31Bugfix: 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-30Merge pull request #2245 from gavinandresen/check216116Gavin Andresen
New checkpoint at block 216116 for the 0.8.0 release
2013-01-30Merge pull request #2236 from sipa/largefilesGavin Andresen
Support large files on 32-bit Linux
2013-01-30Prevent Qt crash at startup with an empty data directoryGavin Andresen
2013-01-30Bump version numbers for 0.8 releaseGavin 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-30Correctly randomize change output positionGavin Andresen
2013-01-30New checkpoint at block 216116 for the 0.8.0 releaseGavin Andresen
2013-01-30Support large files on 32-bit LinuxPieter Wuille
2013-01-29Add DNS seed support for testnetPeter Todd
2013-01-29Merge pull request #2224 from sipa/valstateGavin Andresen
Improve error handling during validation
2013-01-30Deal with LevelDB errorsPieter Wuille
2013-01-29Fix two clang3.3 warningsGavin Andresen
2013-01-30Improve dealing with abort conditionsPieter Wuille
2013-01-30Add disk space checks before flushing CCoins cachePieter Wuille
2013-01-30Treat coinbase value violation as DoSPieter Wuille
2013-01-30CValidationState frameworkPieter Wuille
2013-01-29Merge pull request #2231 from sipa/cleanupsJeff Garzik
Two cleanups before 0.8
2013-01-29New seed nodes, from http://bitcoin.sipa.be/seeds.txtGavin Andresen
2013-01-28Rename database directoriesPieter Wuille
2013-01-28Remove support for pre-checksum undo filesPieter Wuille
2013-01-28Merge pull request #1549 from TheBlueMatt/addnoderpcGavin Andresen
Addnode optimization and addnode access via RPC
2013-01-28Merge pull request #2223 from gavinandresen/nonfinalnonstandardGavin Andresen
Treat non-final transactions as non-standard
2013-01-27Try more than the first address for a DNS -addnode.Matt Corallo
2013-01-27Add a getaddednodeinfo RPC.Matt Corallo
2013-01-27Add addnode RPC command.Matt Corallo
2013-01-27Make ThreadOpenAddedConnections2 exit quicker if(GetNameProxy()).Matt Corallo
2013-01-27Use 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-26Treat non-final transactions as non-standardGavin 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-26Merge pull request #2182 from gavinandresen/addressoracleGavin Andresen
Remove IsFromMe() check in CTxMemPool::accept()
2013-01-26Check only 288 blocks at startup by defaultPieter Wuille
2013-01-26full translations updatePhilip Kaufmann
- fetch current translations from Transifex - update bitcoinstrings.cpp and bitcoin_en.ts
2013-01-25Merge pull request #2168 from sipa/txindexGavin Andresen
Add optional transaction index to databases
2013-01-24Merge pull request #2207 from gavinandresen/leveldb19Gavin Andresen
Leveldb19
2013-01-23Let limitfreerelay=0 reject ALL free transactionsGavin Andresen
2013-01-23Bitcoin-Qt: cleanup / optimise addressbookpagePhilip Kaufmann
- don't show QR Code context menu, when USE_QRCODE=1 was not specified when compiling the client - re-work on_showQRCode_clicked() for better readability and remove an unneeded duplicate check - re-work on_signMessage_clicked() and on_verifyMessage_clicked() to match foreach in on_showQRCode_clicked(), which seems more robust / cleaner - re-order context menu stuff to match real context menu layout - add comments for all private slots in the class
2013-01-23Fix corruption bug found and analyzed by dhruba@gmail.comDavid Grogan
https://groups.google.com/d/msg/leveldb/Kc9JxuIUu5A/9P0N9RL4ar8J