Merge pull request #1237 from gmaxwell/master
Kill warning from unavoidable signed/unsigned comparison in bitcoinrpc.cpp.
This commit is contained in:
commit
9d9aae0396
@ -1525,7 +1525,7 @@ Value listtransactions(const Array& params, bool fHelp)
|
||||
if (pacentry != 0)
|
||||
AcentryToJSON(*pacentry, strAccount, ret);
|
||||
|
||||
if (ret.size() >= (nCount+nFrom)) break;
|
||||
if ((int)ret.size() >= (nCount+nFrom)) break;
|
||||
}
|
||||
// ret is newest to oldest
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user