Replace spaces with tabs

This commit is contained in:
Paweł Bylica 2014-12-11 20:46:05 +01:00
parent c044e1d1e9
commit 8ada6f3cb9

View File

@ -330,11 +330,11 @@ void checkStorage(map<u256, u256> _expectedStore, map<u256, u256> _resultStore,
}
}
for (auto&& resultStorePair : _resultStore)
{
if (!_expectedStore.count(resultStorePair.first))
BOOST_ERROR(_expectedAddr << ": unexpected store key " << resultStorePair.first);
}
for (auto&& resultStorePair : _resultStore)
{
if (!_expectedStore.count(resultStorePair.first))
BOOST_ERROR(_expectedAddr << ": unexpected store key " << resultStorePair.first);
}
}
void checkLog(LogEntries _resultLogs, LogEntries _expectedLogs)