Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-14 | Refactor fee rules to make them actually readable. | Matt Corallo | |
This (nearly) doesn't change fee rules at all: * To make it into the fee transaction area, the dPriority comparison changed from < to <= * We now just ignore transactions > MAX_BLOCK_SIZE/4 instead of doing some calculations to require increasingly large fees as size increases. | |||
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 | 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-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 | Removed the main.h include from net.cpp. | Eric Lombrozo | |
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-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: 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 | |
2013-06-04 | build: split the non-gui startup routines into a new file | Cory Fields | |
This will allow each to have its own main(), meaning that we can build a common base client and simply link in the correct startup object to create the appropriate binary. | |||
2013-06-04 | build: prepare to move DetectShutdownThread | Cory Fields | |
2013-06-03 | Merge pull request #2613 from jonasschnelli/prefsFix | Wladimir J. van der Laan | |
MaxOSX: settings fixes (#2371) | |||
2013-06-03 | Merge pull request #2727 from TheBlueMatt/master | Wladimir J. van der Laan | |
One more data-driven test-case | |||
2013-06-03 | Merge branch 'master' of git://github.com/bitcoin/bitcoin into prefsFix | Jonas Schnelli | |
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch> Conflicts: bitcoin-qt.pro | |||
2013-06-03 | Bitcoin-Qt: harmonize 2 setClientModel() functions | Philip Kaufmann | |
- harmonize BitcoinGUI::setClientModel() and RPCConsole::setClientModel() - now RPCConsole::setClientModel() also includes a direct call to setNumBlocks() | |||
2013-06-03 | MaxOSX: settings fixes (#2371) | Jonas Schnelli | |
- Launch-At-Startup implementation for mac - Remove "Window" tab in settings Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch> | |||
2013-06-02 | Add new data-driven test-case. | Matt Corallo | |
2013-06-02 | Bitcoin-Qt: setup testnet GUI directly | Philip Kaufmann | |
- this directly sets up all GUI elements that have testnet special-casing without first setting up main net stuff and changing afterwards (titles, icons etc.) - also fixes 2 wrong icons shown during testnet usage on our toolbar | |||
2013-06-02 | Merge pull request #2588 from Diapolo/GetBoolArg | Wladimir J. van der Laan | |
remove GetBoolArg() fDefault parameter defaulting to false | |||
2013-06-01 | remove GetBoolArg() fDefault parameter defaulting to false | Philip Kaufmann | |
- explicitly set the default of all GetBoolArg() calls - rework getarg_test.cpp and util_tests.cpp to cover this change - some indentation fixes - move macdockiconhandler.h include in bitcoin.cpp to the "our headers" section | |||
2013-06-01 | Qt5 compatibility | Wladimir J. van der Laan | |
This commit squashes all the changes in the Qt5 branch relative to master. Backward compatibility with Qt4 is retained. Original authors: - Philip Kaufmann <phil.kaufmann@t-online.de> - Jonas Schnelli <jonas.schnelli@include7.ch> | |||
2013-05-30 | Merge pull request #2552 from Diapolo/win-typedef | Jeff Garzik | |
remove obsolete and unused typedef for Windows | |||
2013-05-30 | Merge pull request #2615 from jonasschnelli/mac10_8_not_center | Wladimir J. van der Laan | |
osx: make use of the 10.8+ user notification center to display growl lik... | |||
2013-05-30 | Merge pull request #2716 from laanwj/2013_05_30_getwork | Jeff Garzik | |
Move pMiningKey init out of StartRPCThreads | |||
2013-05-30 | Merge pull request #2705 from robbak/crash_zero_size_peers.dat | Jeff Garzik | |
Don't attempt to resize vector to negative size. | |||
2013-05-30 | Merge pull request #2644 from sipa/constfindblock | Jeff Garzik | |
Make FindBlockByHeight constant-time | |||
2013-05-30 | Merge pull request #2642 from sipa/rightgenesis | Jeff Garzik | |
Check for correct genesis |