aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-04-10 13:31:12 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2012-04-10 13:31:12 -0700
commit702764f53b6aded29fc2e020078d192ec2b13d68 (patch)
tree3c532113e13e79b5a0677fd5f8080766ea96ae23 /src/util.cpp
parentb56772e5df75832b84efacba60bbb3e7910fa1cf (diff)
parenta20c0d0f6792acf532309eee2e9f29120c801ee4 (diff)
downloadbitcoin-702764f53b6aded29fc2e020078d192ec2b13d68.tar.xz
Merge pull request #1054 from sipa/buildinfo
Build identification strings
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp7
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)