Remove LowID and HighID from ripple state nodes.

This commit is contained in:
Arthur Britto
2012-09-28 14:59:34 -07:00
parent 3cd9068793
commit 7bd25b8688
6 changed files with 44 additions and 29 deletions

View File

@@ -16,11 +16,11 @@
// Version we prefer to speak:
#define PROTO_VERSION_MAJOR 0
#define PROTO_VERSION_MINOR 7
#define PROTO_VERSION_MINOR 8
// Version we will speak to:
#define MIN_PROTO_MAJOR 0
#define MIN_PROTO_MINOR 7
#define MIN_PROTO_MINOR 8
#define MAKE_VERSION_INT(maj,min) ((maj << 16) | min)
#define GET_VERSION_MAJOR(ver) (ver >> 16)