aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-10-08Bitcoin-Qt: ensure Qt icon is shown with Qt >= 5.0Philip Kaufmann
2013-10-07Merge pull request #3059 from Diapolo/ShutdownGavin Andresen
add missing Boost Thread join_all() call during shutdown
2013-10-07style-police: fixed badly readable code in ProcessMessage()Philip Kaufmann
- I introduced the problem and fixed it with better readable code
2013-10-07add missing Boost Thread join_all() call during shutdownPhilip Kaufmann
- fixes #3037 by adding missing join_all() call and brings bitcoind shutdown code in line with Bitcoin-Qt shutdown code - added a comment for the if (!fRet) case
2013-10-06Merge pull request #3056 from Diapolo/stuck_debug_windowWladimir J. van der Laan
Bitcoin-Qt: prevent stuck/unusable debug window on exit
2013-10-05Bitcoin-Qt: prevent stuck/unusable debug window on exitPhilip Kaufmann
- when closing the client with an open debug window, that window could become stuck/unsuable (it was still shown wherea the main window was hidden already) - fix this by hiding the debug window, when quitting the the client
2013-10-04Hurricane Electric uses block 2001:470::, not 2011:470::David Hill
2013-10-04special case DoS value == 0 in ProcessMessage()Philip Kaufmann
- prevents unneeded log messages, which could make users think something bad was happening
2013-10-03Merge pull request #2947 from gmaxwell/theyre_maturing_faster_these_daysGavin Andresen
[wallet] Consider generated coins mature at COINBASE_MATURITY+1
2013-10-03Merge pull request #3040 from Diapolo/Qt_misc2Gavin Andresen
Bitcoin-Qt: add missing change from branch Qt_misc
2013-10-03Merge pull request #3050 from Diapolo/fix_IsRFC4193_commentGavin Andresen
fix #3049 by changing comment for CNetAddr::IsRFC4193()
2013-10-03Merge pull request #3051 from Diapolo/bitcoind-rcGavin Andresen
rename bitcoin-res.rc to bitcoind-res.rc
2013-10-03Merge pull request #3038 from Diapolo/Log_ShutdownJeff Garzik
log start and end of Shutdown()
2013-10-03rename bitcoin-res.rc to bitcoind-res.rcPhilip Kaufmann
- helps recognizing that the resource file belongs to bitcoind.exe
2013-10-03fix #3049 by changing comment for CNetAddr::IsRFC4193()Philip Kaufmann
2013-10-02RPC validateaddress: test pwalletMain for NULL (no-wallet mode)Jeff Garzik
2013-10-02log start and end of Shutdown()Philip Kaufmann
- could be helpful when debugging shutdown related problems
2013-10-01Merge branch 'pwalletmain' - checking pwalletMain for NULL,Jeff Garzik
a pre-req for no-wallet support.
2013-10-01Support absence of wallet (pwalletMain==NULL) in several locations,Jeff Garzik
notably RPC.
2013-10-01Merge pull request #2991 from Diapolo/translation_fixesWladimir J. van der Laan
Bitcoin-Qt: translation fixes in sendcoins
2013-10-01Merge pull request #2888 from litecoin-project/getnetworkhashpsJeff Garzik
Add getnetworkhashps to get the estimated network hashrate
2013-10-01Bitcoin-Qt: translation fixes in sendcoinsPhilip Kaufmann
- remove some unneeded translatable strings from sendcoinsentry.ui file and rename some elements for better readability - optimize string prorcessing in SendCoinsDialog::on_sendButton_clicked() - make all UI labels for secure payments plain text and move the settings to sendcoinsentry.ui file - remove unneeded button and default button definiton from warning message boxes - remove fixed font-size when sending coins to an address with label and use monospace font for addresses
2013-10-01Bitcoin-Qt: add missing change from branch Qt_miscPhilip Kaufmann
- remove an unneeded debug message in walletframe
2013-10-01misc small spelling/indentation fixesPhilip Kaufmann
2013-09-29Merge pull request #3015 from theuni/win32-version-infoPieter Wuille
Win32 version info
2013-09-28several small Qt-related fixesPhilip Kaufmann
- make BitcoinGUI::showPaymentACK() use a reference for msg and use our own GUIUtil::HtmlEscape() function - ensure QTimer usage in clientmodel is the same as in walletmodel - remove an unneeded debug message in walletframe - flag some parameters as unused in DebugMessageHandler() - small code formatting changes
2013-09-28Merge pull request #3031 from Diapolo/minerWladimir J. van der Laan
internal miner: move 2 globals from main to miner
2013-09-28Merge pull request #3027 from cozz/cozz2Wladimir J. van der Laan
GUI: fix sendcoinsdialog/sendcoinsentry
2013-09-25internal miner: move 2 globals from main to minerPhilip Kaufmann
- moves 2 global variables from main.cpp/h to miner.cpp/h - also removes 2 unneded includes in miner.cpp, that come from miner.h already
2013-09-24GUI: fix sendcoinsdialog/sendcoinsentryCozz Lovan
2013-09-24Skip unspendable outputs in consistency checkPieter Wuille
2013-09-23Merge pull request #2791 from sipa/provepruneGavin Andresen
Prune provably-unspendable outputs
2013-09-23Merge pull request #3016 from sipa/lowsPieter Wuille
Use 'low S' as malleability breaker rather than 'even S'
2013-09-22Merge pull request #2949 from gmaxwell/fewer_fee_footgunsGavin Andresen
[raw] reject insanely high fees by default in sendrawtransaction
2013-09-20Merge pull request #2995 from Diapolo/GUI_messageWladimir J. van der Laan
Bitcoin-Qt: BitcoinGUI::message() updates/fixes
2013-09-20fix some printf -> LogPrintf leftoversPhilip Kaufmann
2013-09-20Use 'low S' as malleability breaker rather than 'even S'Pieter Wuille
2013-09-19Bugfix: nHeightLast instead of nHeightFirstPieter Wuille
2013-09-19Fix minor unit test memory leaksPieter Wuille
2013-09-18win32: add version info to bitcoind.exeCory Fields
TODO: Add icon info
2013-09-18autotools: fix the Makefile.include to be safely included anywhere.Cory Fields
This way we can reuse rules rather than duplicating them.
2013-09-18autotools: fix subdir m4 check, never let it return -ICory Fields
If BDB_CPPFLAGS returns only "-I", the next argument sent to the preprocessor is treated as a path. There are 2 fixes here: 1. Check in CPPFLAGS, as a user might have manually passed a path to check. 2. Ensure the value is not empty before setting BDB_CPPFLAGS to "-I value"
2013-09-18qt: english translation updateWladimir J. van der Laan
2013-09-18Add src/.gitignore: ignore src/test_bitcoinJeff Garzik
2013-09-18Replace printf with LogPrintf / LogPrintGavin Andresen
2013-09-18Refactor: OutputDebugStringF -> LogPrint(category, ...)Gavin Andresen
2013-09-17Add getnetworkhashps to get the calculated network hashratecoblee
2013-09-16included-tests: generate binary data from test files for inclusion into test ↵Cory Fields
binaries This change moves test data into the binaries rather than reading them from the disk at runtime. Advantages: - Tests become distributable - Cross-compile friendly. Build on one machine and execute in an arbitrary location on another. - Easier testing for backports. Users can verify that tests pass without having to track down corresponding test data. - More trustworthy test results and easier quality assurance as tests make fewer assumptions about their environment. - Tests could theoretically run at client/daemon startup and exit on failure. Disadvantages: - Required 'hexdump' build-dependency. This is a standard bsd tool that should be usable everywhere. It is likely already installed on all build-machines. - Tests can no longer be fudged after build by altering test-data.
2013-09-16Merge pull request #3000 from gmaxwell/more_osx_fsyncJeff Garzik
More fixes for blockchain corruption on OSX.
2013-09-16autotools: fix a parallel build race condition spotted by the pull-testerCory Fields
libleveldb.a and libmemenv.a should be able to build in parallel, but in practice calling the leveldb makefile ends up rewriting build_config.mk. If one target tries to build while the other is halfway through writing the .mk, the make ends up in an undefined state. Fix that by making one depend on the other. This also reorders the variables to be passed by param rather than via the environment, and combines the targets into a single rule to avoid needless duplication.