diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-10 13:31:12 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-10 13:31:12 -0700 |
commit | 702764f53b6aded29fc2e020078d192ec2b13d68 (patch) | |
tree | 3c532113e13e79b5a0677fd5f8080766ea96ae23 /src/util.cpp | |
parent | b56772e5df75832b84efacba60bbb3e7910fa1cf (diff) | |
parent | a20c0d0f6792acf532309eee2e9f29120c801ee4 (diff) |
Merge pull request #1054 from sipa/buildinfo
Build identification strings
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/util.cpp b/src/util.cpp index 19538a4fa1..cf8ff5361f 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1066,12 +1066,7 @@ string FormatVersion(int nVersion) string FormatFullVersion() { - string s = FormatVersion(CLIENT_VERSION); - if (VERSION_IS_BETA) { - s += "-"; - s += _("beta"); - } - return s; + return CLIENT_BUILD; } // Format the subversion field according to BIP 14 spec (https://en.bitcoin.it/wiki/BIP_0014) |