mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
macro to define core RPC version for avoiding future mistake
This commit is contained in:
parent
b2e1568335
commit
ce866d1cc6
@ -50,7 +50,8 @@ namespace cryptonote
|
||||
// Don't go over 32767 for any of these
|
||||
#define CORE_RPC_VERSION_MAJOR 1
|
||||
#define CORE_RPC_VERSION_MINOR 5
|
||||
#define CORE_RPC_VERSION (((CORE_RPC_VERSION_MAJOR)<<16)|(CORE_RPC_VERSION_MINOR))
|
||||
#define MAKE_CORE_RPC_VERSION(major,minor) (((major)<<16)|(minor))
|
||||
#define CORE_RPC_VERSION MAKE_CORE_RPC_VERSION(CORE_RPC_VERSION_MAJOR, CORE_RPC_VERSION_MINOR)
|
||||
|
||||
struct COMMAND_RPC_GET_HEIGHT
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user