Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-08-22 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
2011-08-17 | Compile with DEBUG_LOCKORDER to detect inconsistent lock orderings that can ↵ | Gavin Andresen | |
cause deadlocks | |||
2011-08-16 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
2011-08-09 | Unify copyright notices. | Matt Corallo | |
To a variation on: // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers | |||
2011-08-06 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
2011-07-25 | Fix UNIX-specific thread handle leak. | JoelKatz | |
2011-07-15 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
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-06-26 | update core to d0d80170a2ca73004e08fb85007fe055cbf4e411 (CWallet class) | Wladimir J. van der Laan | |
2011-06-18 | update bitcoin core from git (eeac8727bc0a951631bd) | Wladimir J. van der Laan | |
2011-06-14 | Merge pull request #226 from jordanlewis/betterheaders | Jeff Garzik | |
Optimize header dependencies; improve Makefile dependency graph | |||
2011-06-13 | Internationalization -- initial step, make _ return a std::string to prevent ↵ | Wladimir J. van der Laan | |
memory leaks | |||
2011-06-12 | update bitcoin core to git ce148944c776ae8e91cc058f44ddce356c7cebc9 | Wladimir J. van der Laan | |
2011-06-12 | Faster timeout when connecting | Pieter Wuille | |
Use non-blocking connects, and a select() call to wait a predefined time (5s by default, but configurable with -timeout) for either success or failure. This allows much more connections to be tried per time unit. Based on a patch by phantomcircuit. | |||
2011-06-11 | move back to original directory structure | Wladimir J. van der Laan | |
2011-05-17 | Only include certain boost headers if necessary. | Jordan Lewis | |
2011-05-15 | Build error mingw, missing std:: | Gavin Andresen | |
2011-05-15 | make bitcoin include files more modular | Wladimir J. van der Laan | |
2011-04-23 | directory re-organization (keeps the old build system) | Jaromil | |
there is no internal modification of any file in this commit files are moved into directories according to established standards in sourcecode distribution; these directories contain: src - Files that are used in constructing the executable binaries, but are not installed. doc - Files in HTML and text format that document usage, quirks of the implementation, and contributor checklists. locale - Files that contain human language translation of strings used in the program contrib - Files contributed from distributions or other third party implementing scripts and auxiliary programs |