aboutsummaryrefslogtreecommitdiff
path: root/src/timedata.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Split up util.cpp/hWladimir J. van der Laan2014-08-261-0/+6
| | | | | | | | | | | | | | | | 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.
* Typo, and a few "Bitcoin" -> "Bitcoin Core"pryds2014-08-041-1/+1
| | | | Github-Pull: #4619
* Add comment about never updating nTimeOffset past 199 samplesWladimir J. van der Laan2014-07-241-0/+18
| | | | Refer to issue #4521 for details.
* Move network-time related functions to timedata.cpp/hWladimir J. van der Laan2014-06-251-0/+91
The network time-offset-mangement functions from util.cpp are moved to timedata.(cpp|h). This breaks the dependency of util on netbase.