aboutsummaryrefslogtreecommitdiff
path: root/serialize.h
diff options
context:
space:
mode:
authors_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-09-06 21:03:04 +0000
committers_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-09-06 21:03:04 +0000
commitd743f0355269e2e03fe3f982e250d07999d72b98 (patch)
treef0b6916122bc1ddb7ff44df06ec417280f7fedcb /serialize.h
parent0a61b0df1224a5470bcddab302bc199ca5a9e356 (diff)
downloadbitcoin-d743f0355269e2e03fe3f982e250d07999d72b98.tar.xz
Gavin Andresen: json-rpc return standard error objects with error code numbers,
json-rpc command line client return exit code, added rpc backupwallet command git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@147 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'serialize.h')
-rw-r--r--serialize.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/serialize.h b/serialize.h
index 3797159726..e1404b7068 100644
--- a/serialize.h
+++ b/serialize.h
@@ -2,8 +2,10 @@
// Distributed under the MIT/X11 software license, see the accompanying
// file license.txt or http://www.opensource.org/licenses/mit-license.php.
+#include <string>
#include <vector>
#include <map>
+#include <set>
#include <boost/type_traits/is_fundamental.hpp>
#if defined(_MSC_VER) || defined(__BORLANDC__)
typedef __int64 int64;
@@ -18,10 +20,9 @@ typedef unsigned long long uint64;
class CScript;
class CDataStream;
class CAutoFile;
-
static const unsigned int MAX_SIZE = 0x02000000;
-static const int VERSION = 311;
+static const int VERSION = 312;
static const char* pszSubVer = ".0";