Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-19 | makefile.mingw: Use normal boost libraries instead of debug for Windows | phelixbtc | |
https://github.com/bitcoin/bitcoin/pull/2835#issuecomment-21231694 | |||
2013-07-18 | Merge pull request #2670 from laanwj/2013_05_datadir | Wladimir J. van der Laan | |
qt: allow user to choose data directory | |||
2013-07-14 | Merge pull request #2825 from sipa/incompatkey | Pieter Wuille | |
Fix minor backward incompatibility | |||
2013-07-13 | Fix minor backward incompatibility | Pieter Wuille | |
The key refactor changed the way unencrypted private keys with compressed public key are stored in the wallet. Apparently older versions relied on this to verify the correctness of stored keys. Note that earlier pre-release versions do risk creating wallets that can not be opened by 0.8.3 and earlier. | |||
2013-07-10 | Merge pull request #2743 from jgarzik/reject-reason | Jeff Garzik | |
Log reason for non-standard transaction rejection | |||
2013-07-10 | Merge pull request #2812 from jgarzik/rpcbestblock | Jeff Garzik | |
RPC: add getbestblockhash, to return tip of best chain | |||
2013-07-10 | Merge pull request #2820 from fanquake/remove-readme-rst | Wladimir J. van der Laan | |
Remove readme-qt.rst and update documentation for readme-qt.md | |||
2013-07-10 | Remove readme-qt.rst and update documentation for readme-qt.md | fanquake | |
2013-07-09 | Merge pull request #2817 from Michagogo/release-process-followable-verbatim | Gavin Andresen | |
Made the build/release process completable verbatim as listed in release-process.md | |||
2013-07-08 | Merge pull request #2816 from wtogami/gitianwtogami | Gavin Andresen | |
Add wtogami to gitian download scripts. | |||
2013-07-07 | Merge pull request #2796 from gmaxwell/remove_overactive_rand_tests | Gregory Maxwell | |
Make the rand tests determinstic. | |||
2013-07-07 | Make the rand tests determinstic. (fixes #2714) | Gregory Maxwell | |
This avoids spurious errors with the old tests but still tests enough that if the rng is replaced with a totally broken one it should still fail. | |||
2013-07-07 | Made the build/release process completable verbatim as listed in | Micha | |
release-process.md | |||
2013-07-07 | Add wtogami to gitian download scripts. | Warren Togami | |
2013-07-03 | RPC: add getbestblockhash, to return tip of best chain | Jeff Garzik | |
2013-07-02 | Merge pull request #2801 from gavinandresen/urifix | Gavin Andresen | |
Fixes for bitcoin: URI handling on Linux | |||
2013-06-29 | Merge pull request #2803 from sipa/tarversion | Pieter Wuille | |
Fix build date for from-tarball builds | |||
2013-06-29 | Fix build date for from-tarball builds | Pieter Wuille | |
2013-06-27 | README for contrib/debian | Gavin Andresen | |
2013-06-26 | Fix Gnome bitcoin: URI handler | Gavin Andresen | |
2013-06-26 | Merge pull request #2793 from Diapolo/translations | Pieter Wuille | |
translation update 2013-06-25 | |||
2013-06-26 | Merge pull request #2174 from CodeShark/sync_macro_clarification | Pieter Wuille | |
Added comments to sync.h to make it easier to understand the macros | |||
2013-06-25 | Added comments to sync.h to make it easier to understand the macros | Eric Lombrozo | |
2013-06-25 | Merge pull request #2209 from CodeShark/WalletRegistrationLocks | Pieter Wuille | |
Wallet registration locks in main.cpp + UnregisterAllWallet() function | |||
2013-06-25 | Merge pull request #2792 from sipa/coreimpl | Jeff Garzik | |
Move core implementations to core.cpp | |||
2013-06-25 | Truncate oversize 'tx' messages before relaying/storing. | Peter Todd | |
Fixes a memory exhaustion attack on low-memory peers. | |||
2013-06-25 | Merge pull request #2679 from vhf/patch-1 | Gavin Andresen | |
Too many bitcoins allowed as amount. (Issue #2401) | |||
2013-06-25 | translation update 2013-06-25 | Philip Kaufmann | |
- updates bitcoinstrings.cpp and bitcoin_en.ts so new translations can be made on Transifex | |||
2013-06-25 | Move core implementations to core.cpp | Pieter Wuille | |
2013-06-24 | Calling UnregisterAllWallets() instead of UnregisterWallet(pwalletMain) in ↵ | Eric Lombrozo | |
init.cpp | |||
2013-06-24 | Added locks on the setpwalletRegistered functions in main.cpp and added an ↵ | Eric Lombrozo | |
UnregisterAllWallets function. | |||
2013-06-24 | main.h->core.h include dependency improvements. | Jeff Garzik | |
2013-06-24 | Merge pull request #2789 from sipa/overdump | Jeff Garzik | |
Dump addresses every 15 minutes instead of 10 seconds | |||
2013-06-24 | Merge pull request #2771 from super3/master | Jeff Garzik | |
Docs Markdown Cleanup - Part 2 | |||
2013-06-24 | Merge pull request #2758 from CodeShark/CBlock-to-core | Jeff Garzik | |
Finish moving core data structures into core.h. | |||
2013-06-24 | Dump addresses every 15 minutes instead of 10 seconds | Pieter Wuille | |
2013-06-23 | Moved CBlock from main.h to core.h | Eric Lombrozo | |
2013-06-23 | Pulled AcceptBlock out of CBlock. | Eric Lombrozo | |
2013-06-23 | Pulled CheckBlock out of CBlock. | Eric Lombrozo | |
2013-06-23 | Pulled AddToBlockIndex out of CBlock. | Eric Lombrozo | |
2013-06-23 | Pulled ConnectBlock out of CBlock. | Eric Lombrozo | |
2013-06-23 | Pulled DisconnectBlock out of CBlock. | Eric Lombrozo | |
2013-06-23 | Moved ReadBlockFromDisk implementation to main.cpp | Eric Lombrozo | |
2013-06-23 | Moved CBlock::ReadFromDisk out of CBlock to functions ReadBlockFromDisk in ↵ | Eric Lombrozo | |
main.h | |||
2013-06-23 | Moved WriteBlockToDisk implementation from main.h to main.cpp | Eric Lombrozo | |
2013-06-23 | Moved CBlock::WriteToDisk out of CBlock to inline function WriteBlockToDisk ↵ | Eric Lombrozo | |
in main.h | |||
2013-06-23 | Merge pull request #2783 from sipa/newtxindex | Pieter Wuille | |
Initialize database before checking changed txindex | |||
2013-06-23 | Merge pull request #2592 from sipa/dumpwallet | Pieter Wuille | |
Add dumpwallet and importwallet RPC commands | |||
2013-06-23 | Merge pull request #2787 from Diapolo/makefiles | Jeff Garzik | |
fix makefiles and init.cpp after chainparams merge | |||
2013-06-23 | fix makefiles and init.cpp after chainparams merge | Philip Kaufmann | |
- add missing chainparams.o to some makefiles - remove a double-include of chainparams.h in init.cpp |