core/state: fix type in DeleteAddressCode

This commit is contained in:
lightclient 2025-06-12 10:08:07 +02:00
parent 9603d9547c
commit 0c422021aa
No known key found for this signature in database
GPG key ID: 657913021EF45A6A

View file

@ -166,7 +166,7 @@ func (al *accessList) Equal(other *accessList) bool {
// DeleteAddressCode removes an address code from the access list.
func (al *accessList) DeleteAddressCode(address common.Address) {
delete(al.addresses, address)
delete(al.addressCodes, address)
}
// PrettyPrint prints the contents of the access list in a human-readable form