add comment re newAccount precompile

This commit is contained in:
Sina Mahmoodi 2023-11-03 17:20:15 +01:00
parent e4399a672a
commit 14d603b009

View file

@ -59,6 +59,8 @@ type StateLogger interface {
OnCodeChange(addr common.Address, prevCodeHash common.Hash, prevCode []byte, codeHash common.Hash, code []byte)
OnStorageChange(addr common.Address, slot common.Hash, prev, new common.Hash)
OnLog(log *types.Log)
// OnNewAccount is called when a new account is created.
// Note: it will be even invoked when precompiled contracts are populated.
OnNewAccount(addr common.Address)
}