Skip to content

Commit

Permalink
Minor Warning Fixed (#1482)
Browse files Browse the repository at this point in the history
Follow up to #1405
  • Loading branch information
spencerlievens authored and UdjinM6 committed May 31, 2017
1 parent ee4daed commit b680467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/rpcwallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2421,7 +2421,7 @@ UniValue getwalletinfo(const UniValue& params, bool fHelp)
obj.push_back(Pair("hdchainid", hdChainCurrent.GetID().GetHex()));
obj.push_back(Pair("hdaccountcount", (int64_t)hdChainCurrent.CountAccounts()));
UniValue accounts(UniValue::VARR);
for (int i = 0; i < hdChainCurrent.CountAccounts(); ++i)
for (size_t i = 0; i < hdChainCurrent.CountAccounts(); ++i)
{
CHDAccount acc;
UniValue account(UniValue::VOBJ);
Expand Down

0 comments on commit b680467

Please sign in to comment.