Begin implementing continuous ledger close.

Pretty much all remaining changes should be to LedgerConsensus.cpp
This commit is contained in:
JoelKatz
2012-06-29 16:34:16 -07:00
parent 2cac0cb288
commit 3a77ef5c82
9 changed files with 47 additions and 68 deletions

View File

@@ -4,7 +4,7 @@
#ifndef SERVER_VERSION_MAJOR
#define SERVER_VERSION_MAJOR 0
#define SERVER_VERSION_MINOR 1
#define SERVER_VERSION_MINOR 2
#define SERVER_VERSION_SUB "-a"
#define SERVER_NAME "NewCoin"
@@ -14,10 +14,10 @@
(SERVER_NAME "-" SV_STRINGIZE(SERVER_VERSION_MAJOR) "." SV_STRINGIZE(SERVER_VERSION_MINOR) SERVER_VERSION_SUB)
#define PROTO_VERSION_MAJOR 0
#define PROTO_VERSION_MINOR 1
#define PROTO_VERSION_MINOR 2
#define MIN_PROTO_MAJOR 0
#define MIN_PROTO_MINOR 1
#define MIN_PROTO_MINOR 2
#define MAKE_VERSION_INT(maj,min) ((maj << 16) | min)
#define GET_VERSION_MAJOR(ver) (ver >> 16)