Skip to content

Commit

Permalink
FIXED: another compile error under windows
Browse files Browse the repository at this point in the history
  • Loading branch information
thokon00 committed Jun 5, 2014
1 parent f8c6989 commit 5a0726c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rpcblockchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 5a0726c

Please sign in to comment.