mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-18 22:35:39 +01:00
Use unsigned ints to fix signed/unsigned warnings
This commit is contained in:
@@ -72,7 +72,7 @@ Object JSONRPCError(int code, const string& message)
|
||||
void RPCTypeCheck(const Array& params,
|
||||
const list<Value_type>& typesExpected)
|
||||
{
|
||||
int i = 0;
|
||||
unsigned int i = 0;
|
||||
BOOST_FOREACH(Value_type t, typesExpected)
|
||||
{
|
||||
if (params.size() <= i)
|
||||
|
||||
Reference in New Issue
Block a user