diff options
| author | Gavin Andresen <[email protected]> | 2012-08-21 11:58:47 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-08-21 11:59:59 -0400 |
| commit | b4b7ed1915c9d63fdd9fae3839376fe1cc86c9d5 (patch) | |
| tree | 01abf4c77e43ff3950a99dbf9680c86c476428cd | |
| parent | Merge pull request #1693 from jgarzik/rpcwallet (diff) | |
| download | discoin-b4b7ed1915c9d63fdd9fae3839376fe1cc86c9d5.tar.xz discoin-b4b7ed1915c9d63fdd9fae3839376fe1cc86c9d5.zip | |
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 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); |