From bb4b0e77e4fe0fc9a41d5eb0ca73132cb7026a51 Mon Sep 17 00:00:00 2001 From: Klimov Sergey Date: Mon, 12 May 2025 05:06:07 +0800 Subject: [PATCH] fix incorrect description of interface behavior --- core/vm/interface.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/vm/interface.go b/core/vm/interface.go index 57f35cb249..ccfdec1ab5 100644 --- a/core/vm/interface.go +++ b/core/vm/interface.go @@ -69,7 +69,6 @@ type StateDB interface { SelfDestruct6780(common.Address) (uint256.Int, bool) // Exist reports whether the given account exists in state. - // Notably this should also return true for self-destructed accounts. Exist(common.Address) bool // Empty returns whether the given account is empty. Empty // is defined according to EIP161 (balance = nonce = code = 0).