Changes to support threading through account roots, offers, and ripple state nodes.

Fix tracking the last transaction signed by an account.
This commit is contained in:
JoelKatz
2012-08-20 13:45:58 -07:00
parent a99f814c20
commit 68b044ddde
6 changed files with 17 additions and 5 deletions

View File

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