aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-09-06Fix double-paren typoGavin Andresen
2012-09-06Minor build documentation fixGavin Andresen
2012-09-06Merge branch 'master' of github.com:bitcoin/bitcoinGavin Andresen
2012-09-06Build doc updatesGavin Andresen
2012-09-05Merge pull request #1792 from Diapolo/rem_double_errfuncWladimir J. van der Laan
replace 2x WSAGetLastError() with 1x WSAGetLastError() call
2012-09-05Fix mac .dmg packager for latest macports qt4Gavin Andresen
2012-09-05replace 2x WSAGetLastError() with 1x WSAGetLastError() callPhilip Kaufmann
2012-09-05Bump version number for 0.7.0rc2v0.7.0rc2Gavin Andresen
2012-09-05Minor documentation updatesGavin Andresen
2012-09-05Merge branch 'testnet_alert' of git://github.com/gavinandresen/bitcoin-gitGavin Andresen
2012-09-05Update gitian build setup notesGavin Andresen
2012-09-05Merge pull request #1791 from xanatos/patch-18Jeff Garzik
Correct LoadWallet() return value (false -> DB_LOAD_OK)
2012-09-05Correct LoadWallet() return value (false -> DB_LOAD_OK)xanatos
Equivalent code. (false == 0 == DB_LOAD_OK). Fixes #1706.
2012-09-04Merge pull request #1789 from Diapolo/fix_double_StartuptimeJeff Garzik
remove double logging of startup time, when !fLogTimestamps
2012-09-04Merge pull request #1788 from Diapolo/fix_unsigned_BlockFilePathJeff Garzik
fix signed/unsigned usage in BlockFilePath()
2012-09-05remove double logging of startup time, when !fLogTimestampsPhilip Kaufmann
2012-09-05fix signed/unsigned usage in BlockFilePath()Philip Kaufmann
2012-09-04Add block file naming helper, BlockFilePath()Jeff Garzik
2012-09-04init.cpp: fix build error, and possibly-uninit'd warningJeff Garzik
2012-09-04Merge pull request #1427 from rebroad/StartTimeFixJeff Garzik
No need to log start time if it's already being done on every line.
2012-09-04Merge pull request #1777 from laanwj/2012_09_eliminate_sprintfJeff Garzik
Remove last occurrence of potentially insecure function sprintf
2012-09-04Merge pull request #1779 from xanatos/patch-15Jeff Garzik
Useless vector declaration
2012-09-04Merge pull request #1738 from laanwj/2012_08_boostthreadJeff Garzik
implement CreateThread with boost::thread
2012-09-03Merge pull request #1743 from xanatos/patch-14Wladimir J. van der Laan
Changed nprev->pprev
2012-09-03Merge pull request #1728 from xanatos/patch-11Wladimir J. van der Laan
Removed duplicated lock
2012-09-03Useless vector declarationxanatos
The vector isn't referenced in the small code block it's declared. I don't see any "useful" side effect in its declaration.
2012-09-03Remove last occurrence of potentially insecure function sprintf.Wladimir J. van der Laan
%d can return up to 11 characters. Move away from fixed buffer completely and use our own safe function strprintf.
2012-09-02Merge pull request #1774 from luke-jr/refactor_timesGavin Andresen
Bugfix: Require OrderedTxItems to provide properly scoped accounting entry list
2012-09-02Merge pull request #1761 from Diapolo/timeout_descWladimir J. van der Laan
add default value in -timeout description
2012-09-02Bugfix: Require OrderedTxItems to provide properly scoped accounting entry listLuke Dashjr
OrderedTxItems returns a multimap of pointers, but needs a place to store the actual CAccountingEntries it points to. It had been using a stack item, which was clobbered as soon as it returned, resulting in undefined behaviour. This fixes at least bug #1768.
2012-09-01Merge pull request #1771 from luke-jr/bugfix_bip22_modeJeff Garzik
Bugfix: getblocktemplate: Accept optional "mode" parameter not being provided
2012-09-01No need to log start time if it's already being done on every line.R E Broadley
2012-09-01Bugfix: getblocktemplate: Accept optional "mode" parameter not being providedLuke Dashjr
2012-09-01Merge pull request #1770 from laanwj/2012_08_rpcconsoleparsing2Wladimir J. van der Laan
RPC console: escaping within ' and " now handled differently
2012-09-01RPC console: escaping within ' and " now handled differentlyWladimir J. van der Laan
Should now mimic bash quoting and escaping (see http://wiki.bash-hackers.org/syntax/quoting) exactly, leaving out argument expansion and obscure syntax like $''.
2012-08-31Merge pull request #1758 from laanwj/2012_08_uiconsole_parsingGregory Maxwell
Fix RPC console parser to handle escaped arguments more like bash
2012-08-31In RPC console, attempt to format errorsWladimir J. van der Laan
Try to display a nicer message instead of dumping raw JSON object when possible. If the error somehow doesn't have the required 'code' and 'message' fields, fall back to printing raw JSON object.
2012-08-31Fix RPC console parser to handle escaped arguments more like bashWladimir J. van der Laan
- Fix issue #1750
2012-08-30release-notes.txt: mention getmemorypool removalJeff Garzik
2012-08-30add default value in -timeout descriptionPhilip Kaufmann
2012-08-30Merge pull request #1752 from Diapolo/bitcoind_ASLR_DEPWladimir J. van der Laan
enable ASLR and DEP for bitcoind.exe via linker flags
2012-08-30Merge pull request #1756 from Diapolo/pro_add_netbase_hWladimir J. van der Laan
add missing netbase.h to Qt project-file
2012-08-30add missing netbase.h to Qt project-filePhilip Kaufmann
2012-08-29enable ASLR and DEP for bitcoind.exe via linker flagsPhilip Kaufmann
- this is already active for bitcoin-qt.exe
2012-08-29Rename CreateThread to NewThreadWladimir J. van der Laan
Prevent clash with win32 API symbol
2012-08-29Merge pull request #1745 from gmaxwell/irc_fixesJeff Garzik
Misc IRC fixes.
2012-08-29implement CreateThread with boost::threadWladimir J. van der Laan
I'm not sure why this wasn't done before. - Removes typedef of pthread_t on Windows, which fixes a native compile issue on mingw.
2012-08-29Merge pull request #1754 from laanwj/2012_08_stringsupdate2Wladimir J. van der Laan
Update strings for 0.7.0rc2
2012-08-29Update strings for 0.7.0rc2Wladimir J. van der Laan
2012-08-29Merge pull request #1617 from Diapolo/Show_Hide_stringWladimir J. van der Laan
Update string for Show/Hide in the tray