mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 15:27:57 +00:00
Kill warning from unavoidable signed/unsigned comparison in bitcoinrpc.cpp.
This commit is contained in:
parent
2e767410b8
commit
d285c7bf2c
@ -1525,7 +1525,7 @@ Value listtransactions(const Array& params, bool fHelp)
|
|||||||
if (pacentry != 0)
|
if (pacentry != 0)
|
||||||
AcentryToJSON(*pacentry, strAccount, ret);
|
AcentryToJSON(*pacentry, strAccount, ret);
|
||||||
|
|
||||||
if (ret.size() >= (nCount+nFrom)) break;
|
if ((int)ret.size() >= (nCount+nFrom)) break;
|
||||||
}
|
}
|
||||||
// ret is newest to oldest
|
// ret is newest to oldest
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user