Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-09-05 | Merge branch 'testnet_alert' of git://github.com/gavinandresen/bitcoin-git | Gavin Andresen | |
2012-09-05 | Update gitian build setup notes | Gavin Andresen | |
2012-09-05 | Merge pull request #1791 from xanatos/patch-18 | Jeff Garzik | |
Correct LoadWallet() return value (false -> DB_LOAD_OK) | |||
2012-09-05 | Correct LoadWallet() return value (false -> DB_LOAD_OK) | xanatos | |
Equivalent code. (false == 0 == DB_LOAD_OK). Fixes #1706. | |||
2012-09-04 | Merge pull request #1789 from Diapolo/fix_double_Startuptime | Jeff Garzik | |
remove double logging of startup time, when !fLogTimestamps | |||
2012-09-04 | Merge pull request #1788 from Diapolo/fix_unsigned_BlockFilePath | Jeff Garzik | |
fix signed/unsigned usage in BlockFilePath() | |||
2012-09-05 | remove double logging of startup time, when !fLogTimestamps | Philip Kaufmann | |
2012-09-05 | fix signed/unsigned usage in BlockFilePath() | Philip Kaufmann | |
2012-09-04 | Add block file naming helper, BlockFilePath() | Jeff Garzik | |
2012-09-04 | init.cpp: fix build error, and possibly-uninit'd warning | Jeff Garzik | |
2012-09-04 | Merge pull request #1427 from rebroad/StartTimeFix | Jeff Garzik | |
No need to log start time if it's already being done on every line. | |||
2012-09-04 | Merge pull request #1777 from laanwj/2012_09_eliminate_sprintf | Jeff Garzik | |
Remove last occurrence of potentially insecure function sprintf | |||
2012-09-04 | Merge pull request #1779 from xanatos/patch-15 | Jeff Garzik | |
Useless vector declaration | |||
2012-09-04 | Merge pull request #1738 from laanwj/2012_08_boostthread | Jeff Garzik | |
implement CreateThread with boost::thread | |||
2012-09-03 | Merge pull request #1743 from xanatos/patch-14 | Wladimir J. van der Laan | |
Changed nprev->pprev | |||
2012-09-03 | Merge pull request #1728 from xanatos/patch-11 | Wladimir J. van der Laan | |
Removed duplicated lock | |||
2012-09-03 | Useless vector declaration | xanatos | |
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-03 | Remove 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-02 | Merge pull request #1774 from luke-jr/refactor_times | Gavin Andresen | |
Bugfix: Require OrderedTxItems to provide properly scoped accounting entry list | |||
2012-09-02 | Merge pull request #1761 from Diapolo/timeout_desc | Wladimir J. van der Laan | |
add default value in -timeout description | |||
2012-09-02 | Bugfix: Require OrderedTxItems to provide properly scoped accounting entry list | Luke 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-01 | Merge pull request #1771 from luke-jr/bugfix_bip22_mode | Jeff Garzik | |
Bugfix: getblocktemplate: Accept optional "mode" parameter not being provided | |||
2012-09-01 | No need to log start time if it's already being done on every line. | R E Broadley | |
2012-09-01 | Bugfix: getblocktemplate: Accept optional "mode" parameter not being provided | Luke Dashjr | |
2012-09-01 | Merge pull request #1770 from laanwj/2012_08_rpcconsoleparsing2 | Wladimir J. van der Laan | |
RPC console: escaping within ' and " now handled differently | |||
2012-09-01 | RPC console: escaping within ' and " now handled differently | Wladimir 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-31 | Merge pull request #1758 from laanwj/2012_08_uiconsole_parsing | Gregory Maxwell | |
Fix RPC console parser to handle escaped arguments more like bash | |||
2012-08-31 | In RPC console, attempt to format errors | Wladimir 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-31 | Fix RPC console parser to handle escaped arguments more like bash | Wladimir J. van der Laan | |
- Fix issue #1750 | |||
2012-08-30 | release-notes.txt: mention getmemorypool removal | Jeff Garzik | |
2012-08-30 | add default value in -timeout description | Philip Kaufmann | |
2012-08-30 | Merge pull request #1752 from Diapolo/bitcoind_ASLR_DEP | Wladimir J. van der Laan | |
enable ASLR and DEP for bitcoind.exe via linker flags | |||
2012-08-30 | Merge pull request #1756 from Diapolo/pro_add_netbase_h | Wladimir J. van der Laan | |
add missing netbase.h to Qt project-file | |||
2012-08-30 | add missing netbase.h to Qt project-file | Philip Kaufmann | |
2012-08-29 | enable ASLR and DEP for bitcoind.exe via linker flags | Philip Kaufmann | |
- this is already active for bitcoin-qt.exe | |||
2012-08-29 | Rename CreateThread to NewThread | Wladimir J. van der Laan | |
Prevent clash with win32 API symbol | |||
2012-08-29 | Merge pull request #1745 from gmaxwell/irc_fixes | Jeff Garzik | |
Misc IRC fixes. | |||
2012-08-29 | implement CreateThread with boost::thread | Wladimir 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-29 | Merge pull request #1754 from laanwj/2012_08_stringsupdate2 | Wladimir J. van der Laan | |
Update strings for 0.7.0rc2 | |||
2012-08-29 | Update strings for 0.7.0rc2 | Wladimir J. van der Laan | |
2012-08-29 | Merge pull request #1617 from Diapolo/Show_Hide_string | Wladimir J. van der Laan | |
Update string for Show/Hide in the tray | |||
2012-08-29 | Merge pull request #1731 from luke-jr/opt_ipv6 | Wladimir J. van der Laan | |
Optional IPv6 spaces cleanup | |||
2012-08-29 | Merge pull request #1720 from Diapolo/Qt_about | Wladimir J. van der Laan | |
Qt: add copyrightLabel to aboutdialog.ui | |||
2012-08-28 | Merge pull request #1751 from laanwj/2012_08_qtjsonspirit | Wladimir J. van der Laan | |
Remove json/*.cpp from Qt build system | |||
2012-08-29 | Remove json/*.cpp from Qt build system | Wladimir J. van der Laan | |
They are unneeded as jsonspirit is always used as template library, the other makefiles don't include them either. | |||
2012-08-29 | Update string for Show/Hide in the tray | Philip Kaufmann | |
- be clear we don't "Show/Hide Bitcoins", but just the client window - remove the tooltip for toggleHideAction as this is not shown anyway - update a comment to be more general | |||
2012-08-28 | Don't retry a failing IRC nickname forever. | Gregory Maxwell | |
If our IRC nick is in use (because some other node thinks it has the same address we think we have) don't fruitlessly try to reconnect using that name forever. After three tries, give up and use a random nick. Either we'll learn a new local address from IRC and switch to that, or it was right and the other guy is advertising for us. This avoids a pessimal case where a second testnet node behind a nat is unable to get any peers because he can't get on IRC. | |||
2012-08-28 | Don't force IRC off if not listening, do force it off if IPv4 is off. | Gregory Maxwell | |
Previously Bitcoin would refuse to use IRC if it was either not accepting inbound connections or not making outbound. Instead this changes it to not use IRC only if it's not doing either or if IPv4 is off completely. If Bitcoin is not listening this will use the default random nicks rather than the IP based ones. | |||
2012-08-28 | Merge pull request #1748 from sipa/bugfix_portinc | Jeff Garzik | |
Bugfix: increase score, not port | |||
2012-08-29 | Bugfix: increase score, not port | Pieter Wuille | |