Merge pull request #1054 from sipa/buildinfo

Build identification strings
This commit is contained in:
Pieter Wuille
2012-04-10 13:31:12 -07:00
20 changed files with 193 additions and 31 deletions

View File

@@ -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)