012bc344f5
HTTPS seed fetch, hardcoded onion seeds, staking crash fix, -zapwallettxes support. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
529 B
C
20 lines
529 B
C
#ifndef CLIENTVERSION_H
|
|
#define CLIENTVERSION_H
|
|
|
|
//
|
|
// client versioning
|
|
//
|
|
|
|
// These need to be macros, as version.cpp's and triangles-qt.rc's voodoo requires it
|
|
#define CLIENT_VERSION_MAJOR 5
|
|
#define CLIENT_VERSION_MINOR 5
|
|
#define CLIENT_VERSION_REVISION 6
|
|
#define CLIENT_VERSION_BUILD 0
|
|
|
|
// Converts the parameter X to a string after macro replacement on X has been performed.
|
|
// Don't merge these into one macro!
|
|
#define STRINGIZE(X) DO_STRINGIZE(X)
|
|
#define DO_STRINGIZE(X) #X
|
|
|
|
#endif // CLIENTVERSION_H
|