Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-08-08 | Merge pull request #2856 from Diapolo/crypter_headers | Gavin Andresen | |
remove windows.h from crypter.cpp includes | |||
2013-08-07 | Merge pull request #2883 from codler/patch-5 | Gavin Andresen | |
Replace with existing constants | |||
2013-08-07 | Use existing RPC_INVALID_PARAMETER constant | Han Lin Yap | |
2013-08-06 | Merge pull request #2871 from gavinandresen/simplify_maporphan | Gavin Andresen | |
Simplify storage of orphan transactions, fix CVE-2013-4627 | |||
2013-08-06 | Merge pull request #2882 from codler/patch-4 | Gavin Andresen | |
Fix typo | |||
2013-08-06 | fix typo in README.md | Han Lin Yap | |
2013-08-06 | Merge pull request #2881 from Diapolo/translations_rem_newline | Gavin Andresen | |
remove a newline from a string in init.cpp | |||
2013-08-06 | remove a newline from a string in init.cpp | Philip Kaufmann | |
- to match all other translatable strings in init.cpp and to simplify translations via Transifex | |||
2013-08-05 | Merge pull request #2879 from Diapolo/translations | Wladimir J. van der Laan | |
translations update for Transifex 2013-08-05 | |||
2013-08-05 | translations update for Transifex 2013-08-05 | Philip Kaufmann | |
2013-08-05 | Merge pull request #2849 from petertodd/if-else-else | Gavin Andresen | |
Add unittests for multiple ELSEs in a row | |||
2013-08-05 | Merge pull request #2851 from TheBlueMatt/master | Gavin Andresen | |
Prepare for mempool testing in pull-tester and fix multi-block transaction resurrection | |||
2013-08-05 | Merge pull request #2857 from Diapolo/compat_cleanup | Gavin Andresen | |
cleanup compat.h Windows stuff | |||
2013-08-05 | Merge pull request #2855 from Diapolo/guard_CreatePidFile | Gavin Andresen | |
exclude CreatePidFile() function on WIN32 as it is unused | |||
2013-08-05 | Merge pull request #2827 from Diapolo/rpccon_winpos | Gavin Andresen | |
Bitcoin-Qt: save and restore position of debug window | |||
2013-08-05 | Merge pull request #2865 from Diapolo/fix_intro_translation | Gavin Andresen | |
fix string in intro.cpp, which is untranslatable on Transifex | |||
2013-08-02 | Simplify storage of orphan transactions | Gavin Andresen | |
Orphan transactions were stored as a CDataStream pointer; this changes the mapOrphanTransactions data structures to store orphans as a CTransaction. This also fixes CVE-2013-4627 by always re-serializing transactions before relaying them. | |||
2013-08-02 | Revert "Truncate oversize 'tx' messages before relaying/storing." | Gavin Andresen | |
This reverts commit c40a5aaaf484855a4350fd702e8e72fd21a68155. | |||
2013-07-31 | Merge pull request #2850 from Diapolo/fix_intro | Wladimir J. van der Laan | |
fix possible infinite loop in intro.cpp thread | |||
2013-07-31 | Merge pull request #2867 from jgarzik/miner-sep | Jeff Garzik | |
Move internal miner to separate miner.cpp module | |||
2013-07-31 | Move internal miner/block creation to separate miner.cpp module. | Jeff Garzik | |
Public functions referenced elsewhere are added to miner.h. | |||
2013-07-31 | Minor miner fixes (hey hey it's fun to say) | Jeff Garzik | |
* Fix UpdateCoins() definition in main.h * Remove pwalletMain reference from BitcoinMiner(), as it is passed a wallet argument. | |||
2013-07-31 | Merge pull request #2866 from gavinandresen/loopdefine | Jeff Garzik | |
Remove #define loop from util.h | |||
2013-07-31 | Remove #define loop from util.h | Gavin Andresen | |
Replace the loop macro with while (true). The #define caused problems for Qt. | |||
2013-07-29 | fix string in intro.cpp, which is untranslatable on Transifex | Philip Kaufmann | |
- seems the code tags in the original string cause errors, when using the Transifex site for translation | |||
2013-07-29 | Bitcoin-Qt: save and restore position of debug window | Philip Kaufmann | |
- move the code for saving and restoring window positions from BitcoinGUI to GUIUtil, make it more generic and also use it for saving/restoring debug window positions | |||
2013-07-29 | Make sure new wallet variables are initialized | Pieter Wuille | |
2013-07-28 | Merge pull request #2541 from luke-jr/bugfix_wallet_resend | Pieter Wuille | |
Bugfix: Store last/next wallet resend times unique per CWallet object | |||
2013-07-28 | Merge pull request #2702 from vinniefalco/leveldb-subtree-at-1-10-0 | Pieter Wuille | |
Leveldb subtree at 1 12 0 | |||
2013-07-27 | Merge pull request #2863 from maaku/patch-1 | Pieter Wuille | |
Fix typo in README.md | |||
2013-07-27 | Fix typo in README.md | Mark Friedenbach | |
2013-07-26 | fix possible infinite loop in intro.cpp thread | Philip Kaufmann | |
- it was possible to trigger an infinite loop in FreespaceChecker::check() by simply removing the drive letter on Windows (which leads to an infinite loop in the FreespaceChecker thread) - this was caused by not checking if we make progress with parentDir.parent_path() | |||
2013-07-25 | Merge pull request #2847 from Diapolo/fix_QApplication_include | Wladimir J. van der Laan | |
Bitcoin-Qt: fix QApplication includes to match our include defaults | |||
2013-07-25 | Merge pull request #2848 from Diapolo/translations | Wladimir J. van der Laan | |
update bitcoin_en.ts to current master (2013-07-23) | |||
2013-07-24 | Merge pull request #1889 from tcatm/multi-wallet | Gavin Andresen | |
let user select wallet file with -wallet=foo.dat | |||
2013-07-24 | remove windows.h from crypter.cpp includes | Philip Kaufmann | |
- remove an unneeded windows.h include (comes from allocators.h, which is included in crypter.h) | |||
2013-07-24 | cleanup compat.h Windows stuff | Philip Kaufmann | |
- remove an unneded include for mswsock.h as we use winsock2.h anyway - move typedef u_int SOCKET; into the #ifndef WIN32 part - remove typedef int socklen_t; as this is defined in ws2tcpip.h | |||
2013-07-24 | exclude CreatePidFile() function on WIN32 as it is unused | Philip Kaufmann | |
2013-07-23 | Fix multi-block reorg transaction resurrection | Matt Corallo | |
2013-07-23 | Don't use checkpoints and accept nonstd txn on -regtest | Matt Corallo | |
2013-07-23 | Add unittests for multiple ELSEs in a row | Peter Todd | |
IF ELSE ELSE ENDIF is a valid construct; execution or non-execution inverts on each ELSE encountered. | |||
2013-07-23 | update bitcoin_en.ts to current master (2013-07-23) | Philip Kaufmann | |
2013-07-23 | Bitcoin-Qt: fix QApplication includes to match our include defaults | Philip Kaufmann | |
- move all QApplication includes to top of included Qt headers - undef our loop macro where it would cause compilation errors otherwise | |||
2013-07-22 | Merge pull request #2795 from fanquake/log_aborted_rebuilds | Jeff Garzik | |
Log aborted block database rebuilds | |||
2013-07-22 | Merge pull request #2832 from luke-jr/bugfix_wdb_boostver | Jeff Garzik | |
Bugfix: Move boost/version include from db.cpp to walletdb.cpp where BOOST_VERSION is used | |||
2013-07-22 | Merge pull request #2826 from Diapolo/fix_mingw481 | Jeff Garzik | |
fix invalid conversion error with MinGW 4.8.1 in net.cpp | |||
2013-07-22 | Merge pull request #2836 from phelixbtc/patch-3 | Jeff Garzik | |
makefile.mingw: Use normal boost libraries instead of debug for Windows | |||
2013-07-22 | Merge pull request #2842 from luke-jr/bugfix_usage | Jeff Garzik | |
Bugfix: Include block creation and SSL options headings in usage | |||
2013-07-21 | Bugfix: Include block creation and SSL options headings in usage | Luke Dashjr | |
2013-07-19 | makefile.mingw: Use normal boost libraries instead of debug for Windows | phelixbtc | |
https://github.com/bitcoin/bitcoin/pull/2835#issuecomment-21231694 |