aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-02-23Merge pull request #2186 from Diapolo/misc_stuffWladimir J. van der Laan
small changes in init, main, checkpoints.h and bitcoin-qt.pro
2013-02-23Merge pull request #2299 from gavinandresen/localsocketuriWladimir J. van der Laan
Reimplement click-to-pay. Support OSX.
2013-02-22Merge pull request #2221 from sipa/perfoGavin Andresen
Various performance tweaks to CCoinsView
2013-02-22Merge pull request #2229 from sipa/preallocGavin Andresen
Native versions for AllocateFileRange()
2013-02-22Merge pull request #2310 from sipa/progressbarGavin Andresen
Progressbar based on time-based estimation of transactions.
2013-02-22Merge pull request #2312 from gmaxwell/random_randomGavin Andresen
ApproximateBestSubset internal RNG to prevent degenerate behavior.
2013-02-22Merge pull request #2308 from apoelstra/safemode-privkeyGavin Andresen
Enable dumpprivkey in safe mode
2013-02-22Merge pull request #2160 from petertodd/add-adjustedtime-to-rpc-getinfoGavin Andresen
Add adjustedtime to getinfo RPC call
2013-02-22Merge pull request #1974 from kjj2/walletnotifyGavin Andresen
Add -walletnotify to call an external script on wallet transactions
2013-02-20Shorten a startup message. It was getting truncated and looks ugly.Mike Hearn
2013-02-20small changes in init, main, checkpoints.h and bitcoin-qt.proPhilip Kaufmann
- remove an unneeded MODAL flag, as MSG_ERROR sets MODAL - re-order an if-clause in main to have bool checks before a function call - fix some log messages that used wrong function names - make a log message use a correct ellipsis - remove some unneded spaces, brackets and line-breaks - fix style for adding files in the Qt project
2013-02-18Set CC/CXX properly for gitian buildv0.8.0Gavin Andresen
2013-02-18Merge pull request #2311 from gavinandresen/masterGavin Andresen
Pass compiler flags to leveldb make
2013-02-18Merge pull request #2315 from sipa/loaderrorGavin Andresen
Improve block database load error reporting
2013-02-18Internal RNG for approximateBestSubset to prevent degenerate behavior.Gregory Maxwell
This fixes test_bitcoin failures on openbsd reported by dhill on IRC. On some systems rand() is a simple LCG over 2^31 and so it produces an even-odd sequence. ApproximateBestSubset was only using the least significant bit and so every run of the iterative solver would be the same for some inputs, resulting in some pretty dumb decisions. Using something other than the least significant bit would paper over the issue but who knows what other way a system's rand() might get us here. Instead we use an internal RNG with a period of something like 2^60 which is well behaved. This also makes it possible to make the selection deterministic for the tests, if we wanted to implement that.
2013-02-17Improve block database load error reportingPieter Wuille
2013-02-16Merge branch 'loaderror' of git://github.com/sipa/bitcoinGavin Andresen
2013-02-16Improve block database load error reportingPieter Wuille
2013-02-16Merge pull request #2283 from Diapolo/translationsWladimir J. van der Laan
translations update (bitcoinstrings.cpp + bitcoin_en.ts)
2013-02-16Transactions-based verification progressPieter Wuille
2013-02-16Change progress bar from block-based to time-basedWladimir J. van der Laan
This is less confusing to most people, and doesn't rely on estimates of the total number of blocks received from other nodes.
2013-02-15Pass compiler flags down into leveldb makeGavin Andresen
Fixes issue#2288. Includes cleanups from Luke's pull 2243.
2013-02-14Enable dumpprivkey in safe modeAndrew Poelstra
2013-02-12Reimplement click-to-pay links. Add OSX support.Gavin Andresen
Switch to using Qt's QLocalServer/QLocalSocket to handle bitcoin payment links (bitcoin:... URIs) Reason for switch: the boost::interprocess mechanism seemed flaky, and doesn't mesh as well with "The Qt Way" qtipcserver.cpp/h is replaced by paymentserver.cpp/h Click-to-pay now also works on OSX, with a custom Info.plist that registers Bitcoin-Qt as a handler for bitcoin: URLs and an event listener on the main QApplication that handles QFileOpenEvents (Qt translates 'url clicked' AppleEvents into QFileOpenEvents automagically).
2013-02-11Merge pull request #2286 from gavinandresen/fix2285Gavin Andresen
Do not use C++11 std::vector.data()
2013-02-09Use QImage.bits instead of QImage.constBits to ease backportingPetter 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-07Do 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-07translations update (bitcoinstrings.cpp + bitcoin_en.ts)Philip Kaufmann
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