From: MASM fan Date: Mon, 22 Dec 2014 01:11:45 +0000 (-0800) Subject: Use name of block index database engine as version suffix X-Git-Tag: nvc-v0.5.1~56 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=a9a2000f5676862e25c1e223d720e284d35c3259 Use name of block index database engine as version suffix --- diff --git a/src/version.cpp b/src/version.cpp index 5b501b6..b465eff 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -11,8 +11,11 @@ const std::string CLIENT_NAME("Satoshi"); // Client version number -#define CLIENT_VERSION_SUFFIX "-beta" - +#ifdef USE_LEVELDB +#define CLIENT_VERSION_SUFFIX "-leveldb" +#else +#define CLIENT_VERSION_SUFFIX "-bdb" +#endif // The following part of the code determines the CLIENT_BUILD variable. // Several mechanisms are used for this: