Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-19 | RPC: add 'verifychain', to verify chain database at runtime | Jeff Garzik | |
2013-06-19 | Pass check level, check depth to VerifyDB() | Jeff Garzik | |
2013-06-18 | Merge pull request #2760 from cozz/cozz2 | Jeff Garzik | |
fix comment about dust logic | |||
2013-06-17 | Merge pull request #2763 from bitsofproof/master | Pieter Wuille | |
Send tx relay flag with version message | |||
2013-06-15 | Merge pull request #2648 from Diapolo/txindex | Pieter Wuille | |
allow txindex to be removed and add a reindex dialog | |||
2013-06-15 | Merge pull request #2766 from theuni/fix-shutdown-deadlock | Pieter Wuille | |
Fix shutdown deadlock, ticket #2690 | |||
2013-06-15 | Merge pull request #2769 from TheBlueMatt/master | Pieter Wuille | |
Remove broken option to skip input checking for wallet txn. | |||
2013-06-14 | fixed: don't use thread::sleep_for where it's known to be broken | theuni | |
Fixes #2690. | |||
2013-06-13 | fixed: include boost header as necessary | theuni | |
Without this include, sometimes BOOST_VERSION was defined and sometimes it was not, depending on which includes came before it. The result was a random mix of sleep or sleep_for for boost versions >= 1.50. | |||
2013-06-13 | Remove broken option to skip input checking for wallet txn. | Matt Corallo | |
2013-06-11 | send tx relay flag with version | bitsofproof | |
2013-06-11 | fix comment about dust logic | Cozz Lovan | |
2013-06-10 | Merge pull request #2553 from Diapolo/threads | Jeff Garzik | |
changes to thread code (directly use boost::thread) | |||
2013-06-10 | Merge pull request #1863 from jgarzik/keytime | Pieter Wuille | |
"Wallet birthdays": store key create time; calc whole-wallet birthday | |||
2013-06-10 | changes to thread code (directly use boost::thread) | Philip Kaufmann | |
- removes our NewThread() function an replaces remaining calls with boost::thread with our TraceThread template - remove ExitThread() function - fix THREAD_PRIORITY_ABOVE_NORMAL for non Windows OSes | |||
2013-06-10 | allow txindex to be removed and add a reindex dialog | Philip Kaufmann | |
- adds a reindex dialog for Bitcoin-Qt to change -txindex without the need to supply -reindex - now also does a -reindex, when removing the -txindex switch | |||
2013-06-10 | Merge pull request #2728 from runeksvendsen/master | Jeff Garzik | |
Add Linux script to contrib/ that limits outgoing bandwidth to Bitcoin nodes | |||
2013-06-10 | Merge pull request #2747 from luke-jr/getblock_verbose0 | Jeff Garzik | |
Add verbose flag to getblock RPC so it is possible to get hex dumps of blocks | |||
2013-06-10 | Wallet: optimize rescan to skip blocks prior to birthday | Jeff Garzik | |
2013-06-10 | Wallet: store key creation time. Calculate whole-wallet birthday. | Jeff Garzik | |
This also encapsulate wallet-read state information into CWalletScanState. | |||
2013-06-10 | Merge pull request #2154 from CodeShark/dependencycleanup | Jeff Garzik | |
Clean up code dependencies | |||
2013-06-09 | Merge pull request #2749 from laanwj/2013_06_addtotalbalance | Wladimir J. van der Laan | |
qt: Add total balance in overview page | |||
2013-06-09 | Merge pull request #2754 from laanwj/2013_06_create_data_dir | Wladimir J. van der Laan | |
Create parent directories if needed in GetDataDir | |||
2013-06-08 | Create parent directories if needed in GetDataDir | Wladimir J. van der Laan | |
One-line change. Fixes #2752. | |||
2013-06-07 | RPC: getblock(): Accept 2nd "verbose" parameter, similar to ↵ | Luke Dashjr | |
getrawtransaction, but defaulting to 1 for backward compatibility | |||
2013-06-07 | qt: Add total balance in overview page | Wladimir J. van der Laan | |
2013-06-06 | Merge pull request #2746 from Diapolo/pro-file | Wladimir J. van der Laan | |
Bitcoin-Qt: small updates to project file | |||
2013-06-06 | Removed the main.h include from net.cpp. | Eric Lombrozo | |
2013-06-06 | Bitcoin-Qt: small updates to project file | Philip Kaufmann | |
- add new bitcoind.cpp to OTHER_FILES to be able to see it in the Qt Creator IDE - remove a Mac-only header from the general HEADERS, as it is already in macx:HEADERS | |||
2013-06-05 | Using boost::signals2 to message main from net.cpp. | Eric Lombrozo | |
2013-06-05 | Moved UpdateTime out of CBlockHeader and moved CBlockHeader into core. | Eric Lombrozo | |
2013-06-05 | Removed script.cpp's dependence on main.h | Eric Lombrozo | |
2013-06-05 | Moved CCoins, CTxOutCompressor, CTxInUndo, and CTxUndo to core. | Eric Lombrozo | |
2013-06-05 | Removed AcceptToMemoryPool method from CTransaction. This method belongs to ↵ | Eric Lombrozo | |
the mempool instance. Removed AreInputsStandard from CTransaction, made it a regular function in main. Moved CTransaction::GetOutputFor to CCoinsViewCache. Moved GetLegacySigOpCount and GetP2SHSigOpCount out of CTransaction into regular functions in main. Moved GetValueIn and HaveInputs from CTransaction into CCoinsViewCache. Moved AllowFree, ClientCheckInputs, CheckInputs, UpdateCoins, and CheckTransaction out of CTransaction and into main. Moved IsStandard and IsFinal out of CTransaction and put them in main as IsStandardTx and IsFinalTx. Moved GetValueOut out of CTransaction into main. Moved CTxIn, CTxOut, and CTransaction into core. Added minimum fee parameter to CTxOut::IsDust() temporarily until CTransaction is moved to core.h so that CTxOut needn't know about CTransaction. | |||
2013-06-05 | Moved CInPoint to core. Removed GetMinFee from CTransaction and made it a ↵ | Eric Lombrozo | |
regular function in main. | |||
2013-06-05 | Created core.h/core.cpp, added to makefiles. Started moving core structures ↵ | Eric Lombrozo | |
from main to core beginning with COutPoint. | |||
2013-06-05 | Removed net.cpp's dependency on init.h. | Eric Lombrozo | |
Added explicit include of main.h in init.cpp, changed include of init.h to include of main.h in net.cpp. Added function registration for net.cpp in init.cpp's network initialization. Removed protocol.cpp's dependency on main.h. TODO: Remove main.h include in net.cpp. | |||
2013-06-05 | Moved unrelated-to-network calls in StartNode and StopNode into init.cpp | Eric Lombrozo | |
2013-06-05 | Moved PushGetBlocks to main.cpp to eliminate dependence of net.cpp on ↵ | Eric Lombrozo | |
CBlockLocator. | |||
2013-06-05 | Get rid of db dependencies on main | Eric Lombrozo | |
2013-06-05 | Merge pull request #2700 from theuni/gui-split | Jeff Garzik | |
autotools: Gui split | |||
2013-06-05 | Merge pull request #2731 from Diapolo/rpcconsole | Wladimir J. van der Laan | |
Bitcoin-Qt: harmonize 2 setClientModel() functions | |||
2013-06-05 | Merge pull request #2741 from theuni/fix-osx-dock | Wladimir J. van der Laan | |
osx: fix bitcoin-qt startup crash when clicking dock icon | |||
2013-06-04 | osx: fix bitcoin-qt startup crash when clicking dock icon | Cory Fields | |
Crash probably introduced by 4d17a1b0. Inialize the window to NULL and verify it before use. | |||
2013-06-04 | build: kill off the QT_GUI define | Cory Fields | |
2013-06-04 | build: cosmetics after last commit | Cory Fields | |
2013-06-04 | build: use runtime setting for wallet rather than QT_GUI define | Cory Fields | |
2013-06-04 | build: use runtime setting for displaying the help message rather than ↵ | Cory Fields | |
QT_GUI define | |||
2013-06-04 | build: cosmetic: split usage string for easier formatting | Cory Fields | |
2013-06-04 | build: add global var for whether or not the gui is enabled | Cory Fields | |