Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-12-15 | Bitcoin-Qt: comment out unused parameter in addressbookpage | Philip Kaufmann | |
2012-12-13 | Merge pull request #2087 from gavinandresen/check210000 | Pieter Wuille | |
Checkpoint at first 25-btc-reward block (210,000) | |||
2012-12-13 | Merge pull request #2096 from 94m3k1n9/fix-time-formats | Pieter Wuille | |
Change timestamps to use ISO8601 formatting | |||
2012-12-12 | Merge pull request #2045 from Diapolo/use_message | Wladimir J. van der Laan | |
use new message() function in BitcoinGUI | |||
2012-12-12 | LevelDB: build_detect_platform fix NATIVE_WINDOWS indentation | Philip Kaufmann | |
- fix some indentation issues | |||
2012-12-12 | Merge pull request #2080 from mcassano/importprivkey_rescan_false | Gavin Andresen | |
add rescan bool to importprivkey to control whether to do a rescan after import | |||
2012-12-12 | Merge pull request #2095 from al42and/upnp | Gavin Andresen | |
OptionsModel now has MapPortUPnP=false if UPNP is not supported | |||
2012-12-12 | Merge pull request #2003 from alexanderkjeldaas/documented-locking-part-2 | Gavin Andresen | |
Documented locking part 1+2 | |||
2012-12-12 | Merge pull request #1825 from roques/bignum2 | Gavin Andresen | |
Bignum2 | |||
2012-12-12 | Merge pull request #1940 from grimd34th/patch-1 | Gavin Andresen | |
Add NATIVE_WINDOWS | |||
2012-12-12 | Merge pull request #2073 from grimd34th/patch-3 | Gavin Andresen | |
Update src/makefile.mingw | |||
2012-12-12 | Merge pull request #2048 from jgarzik/no-checkpoints | Gavin Andresen | |
Add "checkpoints" option, to permit disabling of checkpoint logic. | |||
2012-12-12 | Merge pull request #1861 from jgarzik/coinlock | Gavin Andresen | |
Add new RPC "lockunspent", to prevent spending of selected outputs | |||
2012-12-12 | Merge pull request #2059 from sipa/benchmark | Gavin Andresen | |
Add -benchmark for reporting block processing times | |||
2012-12-12 | Merge pull request #2062 from sipa/nocoins | Gavin Andresen | |
Reconstruct coins/ database when missing | |||
2012-12-12 | Merge pull request #2074 from sipa/minor | Gavin Andresen | |
Two minor inconvenience fixes | |||
2012-12-12 | Change timestamps to use ISO8601 formatting | Richard Schwab | |
2012-12-12 | OptionsModel now has MapPortUPnP=false if UPNP is not supported | Andrey Alekseenko | |
2012-12-10 | Checkpoint at first 25-btc-reward block (210,000) | Gavin Andresen | |
2012-12-07 | Merge pull request #2068 from Diapolo/CheckDiskSpace | Pieter Wuille | |
some CheckDiskSpace() related changes | |||
2012-12-06 | add rescan bool to importprivkey to control whether to do a rescan after import | Mike Cassano | |
2012-12-06 | Allow lengthy block reconnections to be interrupted | Pieter Wuille | |
When the coin database is out of date with the block database, the best block in it is automatically switched to. This reconnection process can take time, so allow it to be interrupted. This also stops block connection as soon as shutdown is requested, leading to a faster shutdown. | |||
2012-12-06 | Update the block file counter in database when using -reindex | Pieter Wuille | |
This problem is like earth (mostly harmless). After/during a -reindex, it means the statistics about the last block file reported in debug.log are always of blk00000.dat instead of the last file. Apart from that, it means a few more database entries need to be read when finding a file to append to the first time. | |||
2012-12-06 | Reconstruct coins/ from scratch when missing. | Pieter Wuille | |
2012-12-06 | Merge pull request #2057 from Diapolo/FlushBlockFile | Pieter Wuille | |
FlushBlockFile(): check for valid FILE pointer | |||
2012-12-05 | Merge pull request #2066 from Diapolo/small_uiint_changes | Wladimir J. van der Laan | |
UI interface changes | |||
2012-12-05 | Merge pull request #2056 from sipa/fix_2052 | Pieter Wuille | |
Fixes for obscure mempool-checkpoint interaction | |||
2012-12-05 | Add -benchmark for reporting block processing times | Pieter Wuille | |
2012-12-05 | Add GetTimeMicros() for ore accurate benchmarking | Pieter Wuille | |
2012-12-05 | Merge pull request #2063 from Diapolo/CDiskBlockPos | Pieter Wuille | |
add 2 constructors in CDiskBlockPos to simplify class usage | |||
2012-12-05 | call CheckDiskSpace() before pre-allocating space | Philip Kaufmann | |
- even if we are allowed to fail pre-allocating, it's better to check for sufficient space before calling AllocateFileRange() and if we are out of disk space return with error() - the above change allows us to remove the CheckDiskSpace() check in CBlock::AcceptBlock() | |||
2012-12-04 | Update src/makefile.mingw | grimd34th | |
With MinGW we use .a not .lib | |||
2012-12-04 | rework ThreadSafeAskFee() / askFee() functions | Philip Kaufmann | |
- remove unused parameter from ThreadSafeAskFee(), which also results in the removal of an orphan translation-string | |||
2012-12-04 | remove unneeded flag from MSG_INFORMATION and fix an indentation | Philip Kaufmann | |
2012-12-03 | Merge pull request #2058 from sipa/atomicreorg | Pieter Wuille | |
Make SetBestChain() atomic | |||
2012-12-03 | use new message() function in BitcoinGUI | Philip Kaufmann | |
- use it for displaying URI parsing warnings - use it for displaying error and information in backup wallet function (the information display is new and the error was a warning before) - cleanup BitcoinGUI::incomingTransaction() -- use message() + the information icon from message -- comment out an unused parameter in the function definition and declaration -- move all pre-checks at the beginning of the function | |||
2012-12-03 | Bitcoin-Qt: remove obsolete modal flag from GUI APIs | Philip Kaufmann | |
- as we (can) supply the CClientUIInterface::MODAL flag via the style parameter, we don't need a separate bool for checking the modality | |||
2012-12-03 | Merge pull request #2046 from Diapolo/traymenu | Wladimir J. van der Laan | |
split of createTrayIconMenu() from createTrayIcon() in BitcoinGUI | |||
2012-12-03 | add 2 constructors in CDiskBlockPos to simplify class usage | Philip Kaufmann | |
- add a default-constructor, which simply calls SetNull() and a constructor to directly pass nFile and nPos - change code to use that new constructors | |||
2012-12-02 | Make SetBestChain() atomic | Pieter Wuille | |
In case a reorganisation fails, the internal state could become inconsistent (memory only). Previously, a cache per block connect or disconnect action was used, so blocks could not be applied in a partial way. Extend this to a cache for the entire reorganisation, making it atomic entirely. This also simplifies the code a bit. | |||
2012-12-01 | FlushBlockFile(): check for valid FILE pointer | Philip Kaufmann | |
- don't call FileCommit() and fclose() if no valid FILE pointer was returned by OpenBlockFile() | |||
2012-11-30 | Merge pull request #2033 from sipa/kickconflicts | Pieter Wuille | |
Bugfix: remove conflicting transactions from memory pool | |||
2012-12-01 | Only send reorged txn to mempool after checkpoint | Pieter Wuille | |
2012-11-30 | Merge pull request #2037 from luke-jr/printpriority | Gavin Andresen | |
Allow -printpriority without -debug | |||
2012-12-01 | Enable script verification for reorganized mempool tx | Pieter Wuille | |
2012-11-29 | Make test_bitcoin run in a temp datadir | Pieter Wuille | |
2012-11-29 | Add GetTempPath() to util | Pieter Wuille | |
2012-11-28 | New 'checkpoints' option should default to true. | Jeff Garzik | |
2012-11-28 | Add "checkpoints" option, to permit disabling of checkpoint logic. | Jeff Garzik | |
2012-11-27 | Merge pull request #2044 from Diapolo/backupwallet | Wladimir J. van der Laan | |
do not silently ignore errors on "backupwallet" RPC cmd |