From b4b7ed1915c9d63fdd9fae3839376fe1cc86c9d5 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Tue, 21 Aug 2012 11:58:47 -0400 Subject: [PATCH] Fix 32-bit build error: include util.h to get int64 typedef --- src/bitcoinrpc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bitcoinrpc.h b/src/bitcoinrpc.h index 4abda7eda..63fe8a765 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);