Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-12-06 | Format paragraphs properly - count the space between words. | Pavel JanÃk | |
2014-11-24 | libbitcoinconsensus: don't require any global constructors | Cory Fields | |
These static objects are only used in once place, so declare them there instead. | |||
2014-11-17 | Update comments in util to be doxygen compatible | Michael Ford | |
2014-10-31 | minor cleanup: include orders, end comments etc. | Philip Kaufmann | |
- no code changes | |||
2014-10-15 | boost: drop boost dependency in utilstrencodings.cpp | Cory Fields | |
2014-09-25 | SanitizeString: allow '(' and ')' | Wladimir J. van der Laan | |
'(' and ')' are valid in user agent strings, so should be reported as such in RPC `getpeerinfo`. Fixes #4537. | |||
2014-09-18 | Fixing 'vector out of bounds' issue in base 32 and 64 | ENikS | |
2014-09-14 | header include cleanup | Philip Kaufmann | |
- ensures alphabetical ordering for includes etc. in source file headers | |||
2014-08-26 | Split up util.cpp/h | Wladimir J. van der Laan | |
Split up util.cpp/h into: - string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach) - money utilities (parsesmoney, formatmoney) - time utilities (gettime*, sleep, format date): - and the rest (logging, argument parsing, config file parsing) The latter is basically the environment and OS handling, and is stripped of all utility functions, so we may want to rename it to something else than util.cpp/h for clarity (Matt suggested osinterface). Breaks dependency of sha256.cpp on all the things pulled in by util. |