fixed style issue

This commit is contained in:
Marek Kotewicz 2014-10-31 17:13:06 +01:00
parent 53b422c64a
commit d645388fa9

View File

@ -125,7 +125,8 @@ BOOST_AUTO_TEST_CASE(jsonrpc_accounts)
BOOST_CHECK_EQUAL(k.size(), keys.size());
for (auto &i:k)
{
auto it = std::find_if(keys.begin(), keys.end(), [i](dev::KeyPair const& keyPair){
auto it = std::find_if(keys.begin(), keys.end(), [i](dev::KeyPair const& keyPair)
{
return jsToAddress(i.asString()) == keyPair.address();
});
BOOST_CHECK_EQUAL(it != keys.end(), true);