- 22 Jul, 2011 1 commit
-
-
Jeff Garzik authored
Actually use mapAlreadyAskedFor.
-
- 21 Jul, 2011 1 commit
-
-
Matt Corallo authored
Previously, mapAlreadyAskedFor was read from, but never added to. The original intent was to use mapAlreadyAskedFor to keep track of the time an item was requested and "Each retry is 2 minutes after the last". This implements that intent.
-
- 18 Jul, 2011 2 commits
-
-
Gavin Andresen authored
Updated German translation
-
Gavin Andresen authored
Error in Russian Translation
-
- 17 Jul, 2011 3 commits
-
-
Michael Bemmerl authored
-
Michael Bemmerl authored
-
Michael Bemmerl authored
-
- 16 Jul, 2011 2 commits
-
-
Jeff Garzik authored
Update makefile.vc for wallet encryptions.
-
Eric Hosmer authored
-
- 15 Jul, 2011 1 commit
-
-
Jeff Garzik authored
added polish wallet encryption messages
-
- 14 Jul, 2011 12 commits
-
-
Dawid Spiechowicz authored
-
Jeff Garzik authored
Fix bad return values in LoadWallet.
-
Matt Corallo authored
-
Pieter Wuille authored
Single DB transactions
-
Stéphane Gimenez authored
-
Gavin Andresen authored
Fix Build in GetReservedKey() in wallet.cpp
-
Matt Corallo authored
-
Gavin Andresen authored
Generate Warning when using default key.
-
Patrick Varilly authored
Cuts disk activity at startup immensely
-
Matt Corallo authored
-
Jeff Garzik authored
Fix crashes when a wallet is locked and GetReservedKey() is called
-
Matt Corallo authored
-
- 13 Jul, 2011 18 commits
-
-
Jeff Garzik authored
Warning fixes
-
Jeff Garzik authored
Bugfix: add autogenerated addresses to address book
-
Giel van Schijndel authored
Signed-off-by:
Giel van Schijndel <me@mortis.eu>
-
Giel van Schijndel authored
Signed-off-by:
Giel van Schijndel <me@mortis.eu>
-
Pieter Wuille authored
Fix makefile.linux-mingw
-
Matt Corallo authored
-
Pieter Wuille authored
-
Jeff Garzik authored
-
Jeff Garzik authored
Yes, we might release as v0.4, but let's just do a simple increment for now.
-
Jeff Garzik authored
-
Jeff Garzik authored
Warning fixes
-
Giel van Schijndel authored
Only declare & define SigIllHandlerSSE2 when its used. Signed-off-by:
Giel van Schijndel <me@mortis.eu>
-
Giel van Schijndel authored
Remove several unused variables. Signed-off-by:
Giel van Schijndel <me@mortis.eu>
-
Giel van Schijndel authored
Add default cases to opcode switches to assert that they should never occur. Signed-off-by:
Giel van Schijndel <me@mortis.eu>
-
Giel van Schijndel authored
Don't check for a negative parameter count, because not only will it never happen, it doesn't make any sense either. Invalid sockets (as returned by socket(2)) are always exactly -1 (not just negative as negative file descriptors are technically not prohibited by POSIX) on POSIX systems. Since we store them in SOCKET (unsigned int), however, that really is ~0U (or MAX_UINT) which happens to be what INVALID_SOCKET is already defined to, so an additional check for being negative is not only unnecessary (unsigned integers aren't *ever* negative) its redundant as well (the INVALID_SOCKET comparison is enough). Signed-off-by:
Giel van Schijndel <me@mortis.eu>
-
Giel van Schijndel authored
Don't unnecessarily assign to variables within the *boolean* expression of a conditional. Signed-off-by:
Giel van Schijndel <me@mortis.eu>
-
Giel van Schijndel authored
In the assert()s take advantage of the fact that string constants ("string") are effectively of type 'const char []', which when used in an expression yield a non-NULL pointer. An assertion that should always fail can thus be formulated as: assert(!"fail); An assertion where a text message should be added to the expression can be written as such: assert("message" && expression); Signed-off-by:
Giel van Schijndel <me@mortis.eu>
-
Giel van Schijndel authored
fix warning on 64bit systems: cast to pointer from integer of different size [-Wint-to-pointer-cast] Signed-off-by:
Giel van Schijndel <me@mortis.eu>
-