From 5a0726c04dbe9f60e69fbdfd18db0b0370604eb5 Mon Sep 17 00:00:00 2001 From: thokon00 Date: Fri, 6 Jun 2014 01:30:11 +0200 Subject: [PATCH] FIXED: another compile error under windows --- src/rpcblockchain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index 2a5ee81..f916225 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -134,9 +134,9 @@ Value getdifficulty(const Array& params, bool fHelp) "Returns the difficulty as a multiple of the minimum difficulty."); const CBlockIndex* lastPoW = GetLastBlockIndex(pindexBest, false); - uint nextPoW = GetNextTargetRequired(pindexBest, false); + unsigned int nextPoW = GetNextTargetRequired(pindexBest, false); const CBlockIndex* lastPoS = GetLastBlockIndex(pindexBest, true); - uint nextPoS = GetNextTargetRequired(pindexBest, true); + unsigned int nextPoS = GetNextTargetRequired(pindexBest, true); Object obj;