diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-21 16:11:05 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-26 13:25:21 +0200 |
commit | 6e5fd003e04b81115b6b164b21f048472d575535 (patch) | |
tree | 7420ebadf22b1b10bebd08ad3294abc7e8a9b565 /src/version.h | |
parent | b4aa769bcb82519024ee54fc84a37c34420d53b8 (diff) |
Move `*Version()` functions to version.h/cpp
Diffstat (limited to 'src/version.h')
-rw-r--r-- | src/version.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/version.h b/src/version.h index fbb731c91d..3a6c0f3719 100644 --- a/src/version.h +++ b/src/version.h @@ -7,6 +7,7 @@ #include "clientversion.h" #include <string> +#include <vector> // // client versioning @@ -48,4 +49,7 @@ static const int BIP0031_VERSION = 60000; // "mempool" command, enhanced "getdata" behavior starts with this version static const int MEMPOOL_GD_VERSION = 60002; +std::string FormatFullVersion(); +std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments); + #endif |