Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-22 | Merge branch 'checklevel' of https://github.com/sipa/bitcoin | Gavin Andresen | |
2012-03-22 | Merge pull request #975 from sipa/versioncheck | Gavin Andresen | |
Check minversion before loading the rest of the wallet | |||
2012-03-22 | Merge branch 'addrman' of https://github.com/sipa/bitcoin | Gavin Andresen | |
2012-03-22 | Merge pull request #964 from sipa/fastblocks | Gavin Andresen | |
Speed up block downloading | |||
2012-03-22 | Merge branch 'master' of github.com:bitcoin/bitcoin | Gavin Andresen | |
2012-03-21 | Merge pull request #969 from laanwj/2012_03_printconsole_error | Wladimir J. van der Laan | |
replace call to PrintConsole with call to error() | |||
2012-03-22 | Check minversion before loading the rest of the wallet | Pieter 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-22 | Add -checklevel and improve -checkblocks | Pieter 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-21 | Fix warning about deprecated unescaped backslash | Wladimir J. van der Laan | |
2012-03-21 | Remove -bip16 and -paytoscripthashtime command-line arguments | Gavin Andresen | |
2012-03-21 | replace 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-21 | Merge pull request #947 from ali1234/master | Gavin Andresen | |
When disconnecting a node, the receive buffer should be cleared | |||
2012-03-21 | Merge pull request #948 from sipa/unstuck | Gavin Andresen | |
Prevent stuck block download in large reorganisations | |||
2012-03-21 | Merge pull request #968 from Diapolo/doc-update | Nils Schneider | |
updated translation process documentation | |||
2012-03-21 | updated translation process documentation | Philip Kaufmann | |
2012-03-21 | Merge pull request #965 from khorben/master | Gavin Andresen | |
The generic UNIX Makefile builds with lots of warnings | |||
2012-03-21 | More debug output for failed reorganizations | Pieter Wuille | |
2012-03-21 | Merge pull request #967 from fanquake/patch-1 | Wladimir J. van der Laan | |
Correct date | |||
2012-03-21 | Correct date | Michael | |
2012-03-21 | Merge pull request #954 from Diapolo/master | Wladimir J. van der Laan | |
language updates for source file bitcoin_en.ts + remove cs_CZ (issue #958) | |||
2012-03-21 | Prevent stuck block download in large reorganisations | Pieter Wuille | |
In cases of very large reorganisations (hundreds of blocks), a situation may appear where an 'inv' is sent as response to a 'getblocks', but the last block mentioned in the inv is already known to the receiver node. However, the supplying node uses a request for this last block as a trigger to send the rest of the inv blocks. If it never comes, the block chain download is stuck. This commit makes the receiver node always request the last inv'ed block, even if it is already known, to prevent this problem. | |||
2012-03-21 | Speed up block downloading | Pieter Wuille | |
2012-03-21 | Avoid some pointless warnings while compiling | Pierre Pronchery | |
2012-03-20 | Merge pull request #960 from gavinandresen/issue913 | Gregory Maxwell | |
Use last checkpoint instead of hard-coded 140,700. Fixes #913. | |||
2012-03-20 | Use last checkpoint instead of hard-coded 140,700. Fixes #913. | Gavin Andresen | |
2012-03-20 | Proper support for Growl 1.3 notifications | p2k | |
2012-03-20 | assertion in CBlock::SetBestChainInner was too strong | Pieter Wuille | |
2012-03-20 | remove bitcoin_cs_CZ from bitcoin.qrc and delete bitcoin_cs_CZ.ts | Philip Kaufmann | |
2012-03-19 | updated english language source file via lupdate | Philip Kaufmann | |
2012-03-19 | Merge pull request #953 from Diapolo/master | Nils Schneider | |
german translation update | |||
2012-03-19 | fixed a capitalization error in the german translation | Philip Kaufmann | |
2012-03-19 | update german translation from transifex | Philip Kaufmann | |
2012-03-19 | Merge pull request #928 from jojkaart/master | Wladimir J. van der Laan | |
Make send coins dialog honor the configured unit type even on the first attempt. | |||
2012-03-18 | Merge pull request #931 from luke-jr/dbg_loaderr | Gregory Maxwell | |
Wallet loading diagnostic prints to debug.log | |||
2012-03-18 | Make the sendcoins dialog use the configured unit type, even on the first ↵ | Joel Kaartinen | |
attempt. | |||
2012-03-18 | When disconnecting a node, clear the received buffer so that we do | Alistair Buxton | |
not process any already received messages. The primary reason to do this is if a node spams hundreds of messages and we ban them, we don't want to continue processing the rest of it. | |||
2012-03-17 | Merge pull request #942 from Diapolo/master | Nils Schneider | |
updated german translation from transifex | |||
2012-03-17 | update german translation from transifex | Philip Kaufmann | |
2012-03-16 | Bump CLIENT_VERSION for rc4 releasev0.6.0rc4 | Gregory Maxwell | |
2012-03-16 | Merge pull request #938 from TheBlueMatt/guirpcwin32 | Gregory Maxwell | |
Disable running with -server on bitcoin-qt.exe as it is broken. | |||
2012-03-16 | Fix Win32 RPC Crashes. | Matt Corallo | |
2012-03-16 | update translations from transifex | Nils Schneider | |
2012-03-16 | add shell one-liner for updating translations in bitcoin.qrc | Nils Schneider | |
2012-03-16 | Merge pull request #941 from laanwj/2012_03_newminimizetray | Wladimir J. van der Laan | |
Yet another attempt of a "minimize to tray" that works on all OSes | |||
2012-03-16 | Yet another attempt at implementing "minimize to tray" that works on all OSes | Wladimir J. van der Laan | |
2012-03-15 | Fix windows build in windows Qt SDK | Wladimir J. van der Laan | |
2012-03-14 | Link -lrt library on Linux | Wladimir J. van der Laan | |
This is needed for linking on newer Linux distribs, see http://fedoraproject.org/wiki/UnderstandingDSOLinkChange | |||
2012-03-13 | Bump CLIENT_VERSION for rc3 releasev0.6.0rc3 | Gavin Andresen | |
2012-03-12 | Merge pull request #930 from sipa/minireorg | Gregory Maxwell | |
Limit the impact of reorganisations on the database (fix #925) | |||
2012-03-12 | Limit the impact of reorganisations on the database | Pieter Wuille | |
Sometimes a new block arrives in a new chain that was already the best valid one, but wasn't marked that way. This happens for example when network rules change to recover after a fork. In this case, it is not necessary to do the entire reorganisation inside a single db commit. These can become huge, and exceed the objects/lockers limits in bdb. This patch limits the blocks the actual reorganisation is applied to, and adds the next blocks afterwards in separate db transactions. |