You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
boolis_create_collision(const Account& acc) noexcept
{
// - what if an account had storage but is destructed?// - what if an account had cold storage but it was emptied?// - what if an account without cold storage gain one?if (acc.nonce != 0)
returntrue;
if (acc.code_hash != Account::EMPTY_CODE_HASH)
returntrue;
if (acc.has_cold_storage)
returntrue;
// The hot storage is ignored because it can contain elements from access list.// TODO: Is this correct for destructed accounts?assert(!acc.destructed && "untested");
returnfalse;
}
The text was updated successfully, but these errors were encountered:
EIP-7610.
A comment from the code:
The text was updated successfully, but these errors were encountered: