File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 14
14
*/
15
15
const std::string CLIENT_NAME (" Satoshi" );
16
16
17
- /* *
18
- * Client version number
19
- */
20
- #define CLIENT_VERSION_SUFFIX " "
21
-
22
17
23
18
/* *
24
19
* The following part of the code determines the CLIENT_BUILD variable.
@@ -33,7 +28,6 @@ const std::string CLIENT_NAME("Satoshi");
33
28
* * if BUILD_DESC is defined, use that literally (output of git-describe)
34
29
* * if not, but GIT_COMMIT is defined, use v[maj].[min].[rev].[build]-g[commit]
35
30
* * otherwise, use v[maj].[min].[rev].[build]-unk
36
- * finally CLIENT_VERSION_SUFFIX is added
37
31
*/
38
32
39
33
// ! First, include build.h if requested
@@ -66,7 +60,7 @@ const std::string CLIENT_NAME("Satoshi");
66
60
#endif
67
61
#endif
68
62
69
- const std::string CLIENT_BUILD (BUILD_DESC CLIENT_VERSION_SUFFIX );
63
+ const std::string CLIENT_BUILD (BUILD_DESC);
70
64
71
65
static std::string FormatVersion (int nVersion)
72
66
{
You can’t perform that action at this time.
0 commit comments