diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-08-21 11:58:47 -0400 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-08-21 11:59:59 -0400 |
commit | b4b7ed1915c9d63fdd9fae3839376fe1cc86c9d5 (patch) | |
tree | 01abf4c77e43ff3950a99dbf9680c86c476428cd | |
parent | 5f2b41d54d2adbbbb951291cf8fdcef8a77a543d (diff) |
Fix 32-bit build error: include util.h to get int64 typedef
-rw-r--r-- | src/bitcoinrpc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bitcoinrpc.h b/src/bitcoinrpc.h index 4abda7eda6..63fe8a765f 100644 --- a/src/bitcoinrpc.h +++ b/src/bitcoinrpc.h @@ -16,6 +16,8 @@ class CBlockIndex; #include "json/json_spirit_writer_template.h" #include "json/json_spirit_utils.h" +#include "util.h" + json_spirit::Object JSONRPCError(int code, const std::string& message); void ThreadRPCServer(void* parg); |