- 18 Jul, 2011 2 commits
-
-
Pieter Wuille authored
Cbitcoinaddress
-
Abraham Jewowich authored
Fix typo in CBase58Data::CompareTo
-
- 17 Jul, 2011 3 commits
-
-
Pieter Wuille authored
Split off features unrelated to addresses from CBitcoinAddress to CBase58Data, so they can be reused.
-
Pieter Wuille authored
Instead of conversion functions between pubkey/uint160/address in base58.h, have a fully fledged class CBitcoinAddress (CAddress was already taken) to represent addresses.
-
Pieter Wuille authored
Make CKeyStore's interface work on uint160's instead of pubkeys, so no separate global mapPubKeys is necessary anymore.
-
- 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 20 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>
-
Matt Corallo authored
-
Jeff Garzik authored
Add minversion to wallet.
-