File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ func (s *StateDB) SubRefund(gas uint64) {
298
298
}
299
299
300
300
// Exist reports whether the given account address exists in the state.
301
- // Notably this also returns true for self-destructed accounts.
301
+ // Notably this also returns true for self-destructed accounts within the current transaction .
302
302
func (s * StateDB ) Exist (addr common.Address ) bool {
303
303
return s .getStateObject (addr ) != nil
304
304
}
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ type StateDB interface {
69
69
SelfDestruct6780 (common.Address ) (uint256.Int , bool )
70
70
71
71
// Exist reports whether the given account exists in state.
72
- // Notably this should also return true for self-destructed accounts.
72
+ // Notably this also returns true for self-destructed accounts within the current transaction .
73
73
Exist (common.Address ) bool
74
74
// Empty returns whether the given account is empty. Empty
75
75
// is defined according to EIP161 (balance = nonce = code = 0).
You can’t perform that action at this time.
0 commit comments