Skip to content

Commit 1e06bb6

Browse files
committed
Drop unused CLIENT_VERSION_SUFFIX macro
1 parent ba348db commit 1e06bb6

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/clientversion.cpp

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@
1414
*/
1515
const std::string CLIENT_NAME("Satoshi");
1616

17-
/**
18-
* Client version number
19-
*/
20-
#define CLIENT_VERSION_SUFFIX ""
21-
2217

2318
/**
2419
* The following part of the code determines the CLIENT_BUILD variable.
@@ -33,7 +28,6 @@ const std::string CLIENT_NAME("Satoshi");
3328
* * if BUILD_DESC is defined, use that literally (output of git-describe)
3429
* * if not, but GIT_COMMIT is defined, use v[maj].[min].[rev].[build]-g[commit]
3530
* * otherwise, use v[maj].[min].[rev].[build]-unk
36-
* finally CLIENT_VERSION_SUFFIX is added
3731
*/
3832

3933
//! First, include build.h if requested
@@ -66,7 +60,7 @@ const std::string CLIENT_NAME("Satoshi");
6660
#endif
6761
#endif
6862

69-
const std::string CLIENT_BUILD(BUILD_DESC CLIENT_VERSION_SUFFIX);
63+
const std::string CLIENT_BUILD(BUILD_DESC);
7064

7165
static std::string FormatVersion(int nVersion)
7266
{

0 commit comments

Comments
 (0)