Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-07-22 | fix clear() (clear red/invalid status) | Wladimir J. van der Laan | |
2011-07-18 | one remove/delete icon is enough and the red minus better matches the add icon | Wladimir J. van der Laan | |
2011-07-18 | Merge branch 'notebook' | Wladimir J. van der Laan | |
2011-07-18 | move buttons to bottom of send coins tab, outside of scroll area | Wladimir J. van der Laan | |
2011-07-18 | windows build fix | Wladimir J. van der Laan | |
2011-07-18 | Fix "Last received block was generated Up to date" | Wladimir J. van der Laan | |
2011-07-17 | put sendcoins entries in scroll area, so that window does not become bigger ↵ | Wladimir J. van der Laan | |
than screen with many recipients | |||
2011-07-17 | show rotating spinner when block download out of date, tick otherwise | Wladimir J. van der Laan | |
2011-07-17 | make initial block download reporting somewhat better by tracking version ↵ | Wladimir J. van der Laan | |
responses | |||
2011-07-16 | add missing icon | Wladimir J. van der Laan | |
2011-07-16 | Revert "Now that send coins / receive coins etc are tabs, remove them from ↵ | Wladimir J. van der Laan | |
menu, and reorganize menu bar" This reverts commit ea37fb9187195d746a4b8a84da5cb6bd9e0e4aab. | |||
2011-07-16 | add sendmany support | Wladimir J. van der Laan | |
2011-07-15 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
2011-07-15 | Merge remote-tracking branch 'satoshi/qtui' | Wladimir J. van der Laan | |
Conflicts (resolved by copying files from remote branch): .gitignore src/cryptopp/cpu.cpp src/cryptopp/cpu.h src/cryptopp/cryptlib.h src/cryptopp/iterhash.h src/cryptopp/misc.h src/cryptopp/secblock.h src/cryptopp/sha.cpp src/cryptopp/sha.h src/cryptopp/smartptr.h src/json/json_spirit_reader.cpp src/json/json_spirit_value.cpp src/json/json_spirit_writer.cpp | |||
2011-07-15 | Add call to request unconfirmed balance | Wladimir J. van der Laan | |
2011-07-15 | Now that send coins / receive coins etc are tabs, remove them from menu, and ↵ | Wladimir J. van der Laan | |
reorganize menu bar | |||
2011-07-14 | Fix error when export is cancelled without specifying a filename. | Celil | |
2011-07-14 | solve warnings at startup | Wladimir J. van der Laan | |
2011-07-14 | Fix bad return values in LoadWallet. | Matt Corallo | |
2011-07-14 | Merge pull request #412 from sgimenez/db-transactions | Pieter Wuille | |
Single DB transactions | |||
2011-07-14 | Single DB transaction for addresses from DNS seeds | Stéphane Gimenez | |
2011-07-14 | Fix Build in GetReservedKey() in wallet.cpp | Matt Corallo | |
2011-07-14 | Single DB transaction for all addresses in a message | Patrick Varilly | |
Cuts disk activity at startup immensely | |||
2011-07-14 | Generate Warning when using default key. | Matt Corallo | |
2011-07-14 | Fix crashes when a wallet is locked and GetReservedKey() is called | Matt Corallo | |
2011-07-13 | Merge pull request #406 from muggenhor/warning-fixes | Jeff Garzik | |
Warning fixes | |||
2011-07-13 | Merge pull request #405 from sipa/syncdefault | Jeff Garzik | |
Bugfix: add autogenerated addresses to address book | |||
2011-07-13 | fix warning: control reaches end of non-void function [-Wreturn-type] | Giel van Schijndel | |
Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warning: variable ‘nMinDepth’ set but not used ↵ | Giel van Schijndel | |
[-Wunused-but-set-variable] Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | Fix makefile.linux-mingw | Matt Corallo | |
2011-07-13 | Bugfix: add autogenerated addresses to address book | Pieter Wuille | |
2011-07-13 | Bump version to 0.3.25 | Jeff Garzik | |
Yes, we might release as v0.4, but let's just do a simple increment for now. | |||
2011-07-13 | Update CWallet::LoadWallet for proper return type. | Jeff Garzik | |
2011-07-13 | fix warning: unused function 'SigIllHandlerSSE2' [-Wunused-function] | Giel van Schijndel | |
Only declare & define SigIllHandlerSSE2 when its used. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warning: unused variable 'X' [-Wunused-variable] | Giel van Schijndel | |
Remove several unused variables. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warning: X enumeration values not handled in switch [-Wswitch-enum] | Giel van Schijndel | |
Add default cases to opcode switches to assert that they should never occur. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warning: comparison of unsigned expression < 0 is always false ↵ | Giel van Schijndel | |
[-Wtautological-compare] 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> | |||
2011-07-13 | fix warnings: using the result of an assignment as a condition without ↵ | Giel van Schijndel | |
parentheses [-Wparentheses] Don't unnecessarily assign to variables within the *boolean* expression of a conditional. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-13 | fix warnings: expression result unused [-Wunused-value] | Giel van Schijndel | |
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> | |||
2011-07-13 | fix warning on 64bit systems: cast to pointer from integer of different size ↵ | Giel van Schijndel | |
[-Wint-to-pointer-cast] Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2011-07-12 | Update makefile.linux-mingw to work with crypter and UPnP fix. | Matt Corallo | |
2011-07-12 | Merge pull request #381 from TheBlueMatt/nminversion | Jeff Garzik | |
Add minversion to wallet. | |||
2011-07-12 | Merge pull request #352 from TheBlueMatt/newenc | Jeff Garzik | |
Wallet Private Key Encryption (on CWallet) | |||
2011-07-13 | Make an invalid addrIncoming so that old clients crash. | Matt Corallo | |
This prevents old clients from opening, and thus corrupting or otherwise causing harm to encrypted wallets. | |||
2011-07-13 | Use DB Transactions when encrypting wallet. | Matt Corallo | |
This speeds up the encryption process significantly. | |||
2011-07-13 | Do not use obsolete CPrivKey for passing keys around | Pieter Wuille | |
2011-07-13 | Add the walletlock RPC method to lock the wallet manually. | Matt Corallo | |
2011-07-13 | Dynamically remove/insert the Options for encryption in the menus. | Matt Corallo | |
2011-07-13 | Push unlocked_until in getinfo. | Matt Corallo | |
2011-07-13 | Set the number of SHA512 rounds based on the speed of the computer. | Matt Corallo | |