Fix shadowing variables

This commit is contained in:
seelabs
2019-08-13 14:26:02 -07:00
parent 014df67fed
commit b9e73b4852
55 changed files with 460 additions and 444 deletions

View File

@@ -125,9 +125,9 @@ public:
{
Json::Value jv;
jv[jss::account] = acct.human();
auto const resp =
auto const r =
env.rpc("json", "account_lines", to_string(jv));
return resp[jss::result][jss::lines];
return r[jss::result][jss::lines];
};
{
auto const aliceLines = getAccountLines (alice);