Skip to content

Commit c9a3729

Browse files
committed
core/state: fix type in DeleteAddressCode
1 parent 863bfae commit c9a3729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/state/access_list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ func (al *accessList) Equal(other *accessList) bool {
166166

167167
// DeleteAddressCode removes an address code from the access list.
168168
func (al *accessList) DeleteAddressCode(address common.Address) {
169-
delete(al.addresses, address)
169+
delete(al.addressCodes, address)
170170
}
171171

172172
// PrettyPrint prints the contents of the access list in a human-readable form

0 commit comments

Comments
 (0)