Report wrong account address in case of unexpected storege key

This commit is contained in:
Paweł Bylica 2014-12-11 19:33:49 +01:00
parent 5d22ebe447
commit c044e1d1e9

View File

@ -333,7 +333,7 @@ void checkStorage(map<u256, u256> _expectedStore, map<u256, u256> _resultStore,
for (auto&& resultStorePair : _resultStore)
{
if (!_expectedStore.count(resultStorePair.first))
BOOST_ERROR("unexpected result store key " << resultStorePair.first);
BOOST_ERROR(_expectedAddr << ": unexpected store key " << resultStorePair.first);
}
}