aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-04-04Code deduplication: make function in GUIUtil to get connection type to call ↵Wladimir J. van der Laan
object slot in GUI thread with invokeMethod.
2012-04-04move QT_PLUGINS stuff to qt main file, where it belongsWladimir J. van der Laan
2012-04-03VC2010 compile fixesWladimir J. van der Laan
2012-04-02Merge pull request #1026 from laanwj/2012_04_increase_up_to_date_timeGregory Maxwell
Increase time ago of last block for "up to date" status from 30 to 90 minutes
2012-04-02Increase time ago of last block for "up to date" status from 30 to 90 minutesWladimir J. van der Laan
It was too hyperactive. gmaxwell: I mean that right now when the block gap goes over an hour it starts showing synchronizing. Increasing that to 90 minutes or so would make it only happen about 6.4 times per year
2012-04-02Merge pull request #951 from TheBlueMatt/headerslimitGavin Andresen
Limit getheaders to a hard 2000.
2012-04-02Merge pull request #998 from Diapolo/transactiontablePieter Wuille
removed an ugly line break in a transaction tooltip
2012-04-02Merge pull request #1022 from Diapolo/fix#1020Pieter Wuille
fix for #1020
2012-04-02Merge pull request #995 from Diapolo/masterPieter Wuille
fixed typo in comment in netbase.h and bignum.h
2012-04-02Merge pull request #1006 from Diapolo/tr-trayPieter Wuille
made tray icon tooltip translatable
2012-04-02Bump version to 0.6.0.99 for 0.6.1 merge windowGavin Andresen
2012-04-01hide Delete button (only) on ReceivingTab / hide Sign message button (only) ↵Philip Kaufmann
on SendingTab
2012-03-30fixed typo in comment in netbase.h and bignum.hPhilip Kaufmann
2012-03-29Merge branch 'master' of github.com:bitcoin/bitcoinv0.6.0rc6v0.6.0Gavin Andresen
2012-03-29Merge pull request #1010 from sipa/fastblocks2Gavin Andresen
Use transactions-updated as flush condition
2012-03-29Use transactions-updated as flush conditionPieter Wuille
The normal checkpointing during the block chain download is reduced to every five minutes only, but forced every 200000 updated transactions.
2012-03-29Bump version to 0.6.0rc6Gavin Andresen
2012-03-29Workaround hangs when upgrading old addr.dat filesGavin Andresen
2012-03-29Merge pull request #1007 from gavinandresen/log_auto_removeGavin Andresen
Auto-remove logs, and decrease logfile size to 10M
2012-03-29Auto-remove logs, and decrease logfile size to 10MGavin Andresen
2012-03-29made tray icon tooltip translatablePhilip Kaufmann
2012-03-27removed an ugly line break in a transaction tooltip for case ↵Philip Kaufmann
TransactionStatus::Mature
2012-03-27update translations from transifexPhilip Kaufmann
2012-03-26Update version to 60005 (0.6.0rc5)v0.6.0rc5Gavin Andresen
2012-03-26Merge branch 'master' of github.com:bitcoin/bitcoinGavin Andresen
2012-03-26Merge pull request #991 from gavinandresen/disableWinURIGavin Andresen
Disable bitcoin: URI handling on Windows for the 0.6 release
2012-03-26Merge pull request #990 from sipa/docWladimir J. van der Laan
Begin doxygen-compatible comments
2012-03-26Merge branch 'deladdr' of https://github.com/sipa/bitcoinGavin Andresen
2012-03-26Use erase instead of rewrite to remove old addr entriesPieter Wuille
2012-03-26Disable bitcoin: URI handling on Windows for the 0.6 releaseGavin Andresen
2012-03-26Begin doxygen-compatible commentsPieter Wuille
2012-03-26make sure Window is shown when clicking bitcoin: Links to get user attentionPhilip Kaufmann
2012-03-25Merge pull request #974 from sipa/walletupgradePieter Wuille
Introduce explicit -walletupgrade option
2012-03-25Merge pull request #983 from laanwj/2012_03_removeunusedutilPieter Wuille
Remove unused functions from util.h/util.cpp (EOM)
2012-03-25Give DNS seeds a random age between 3 and 7 days oldPieter Wuille
This speeds up initial connections with an old/large addr.dat a lot.
2012-03-25remove unused functions from util.h/util.cppWladimir J. van der Laan
2012-03-22Introduce explicit -walletupgrade optionPieter Wuille
Do not automatically change the wallet format unless the user takes an explicit action that implies an upgrade (encrypting, for now), or uses -walletupgrade. -walletupgrade optionally takes an integer argument: the client version up to which upgrading is allowed. Without an argument, it is upgraded to latest supported version. If an argument to -walletupgrade is provided at the time the wallet is created, the new wallet will initially not use features beyond that version. Third, the current wallet version number is reported in getinfo.
2012-03-22Merge branch 'checklevel' of https://github.com/sipa/bitcoinGavin Andresen
2012-03-22Merge pull request #975 from sipa/versioncheckGavin Andresen
Check minversion before loading the rest of the wallet
2012-03-22Merge branch 'addrman' of https://github.com/sipa/bitcoinGavin Andresen
2012-03-22Merge pull request #964 from sipa/fastblocksGavin Andresen
Speed up block downloading
2012-03-22Merge branch 'master' of github.com:bitcoin/bitcoinGavin Andresen
2012-03-21Merge pull request #969 from laanwj/2012_03_printconsole_errorWladimir J. van der Laan
replace call to PrintConsole with call to error()
2012-03-22Check minversion before loading the rest of the walletPieter Wuille
When a 0.6 wallet with compressed pubkeys is created, it writes a minversion record to prevent older clients from reading it. If the 0.5 loading it sees a key record before seeing the minversion record however, it will fail with DB_CORRUPT instead of DB_TOO_NEW.
2012-03-22Add -checklevel and improve -checkblocksPieter Wuille
-checkblocks now takes a numeric argument: the number of blocks that must be verified at the end of the chain. Default is 2500, and 0 means all blocks. -checklevel specifies how thorough the verification must be: 0: only check whether the block exists on disk 1: verify block validity (default) 2: verify transaction index validity 3: check transaction hashes 4: check whether spent txouts were spent within the main chain 5: check whether all prevouts are marked spent 6: check whether spent txouts were spent by a valid transaction that consumes them
2012-03-21Remove -bip16 and -paytoscripthashtime command-line argumentsGavin Andresen
2012-03-21replace call to PrintConsole with call to error()Wladimir J. van der Laan
As these are equivalent functions, this cleans up the source a bit. Also remove PrintConsole() as this was the only use.
2012-03-21Merge pull request #947 from ali1234/masterGavin Andresen
When disconnecting a node, the receive buffer should be cleared
2012-03-21Merge pull request #948 from sipa/unstuckGavin Andresen
Prevent stuck block download in large reorganisations
2012-03-21Merge pull request #965 from khorben/masterGavin Andresen
The generic UNIX Makefile builds with lots of warnings