mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
core/state: fix type in DeleteAddressCode
This commit is contained in:
parent
9603d9547c
commit
0c422021aa
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ func (al *accessList) Equal(other *accessList) bool {
|
||||||
|
|
||||||
// DeleteAddressCode removes an address code from the access list.
|
// DeleteAddressCode removes an address code from the access list.
|
||||||
func (al *accessList) DeleteAddressCode(address common.Address) {
|
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
|
// PrettyPrint prints the contents of the access list in a human-readable form
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue