mirror of https://github.com/status-im/op-geth.git
core/vm: fix Byzantium address list (#22603)
This commit is contained in:
parent
59ac3c9fd3
commit
44fe466999
|
@ -118,7 +118,7 @@ func init() {
|
|||
PrecompiledAddressesHomestead = append(PrecompiledAddressesHomestead, k)
|
||||
}
|
||||
for k := range PrecompiledContractsByzantium {
|
||||
PrecompiledAddressesHomestead = append(PrecompiledAddressesByzantium, k)
|
||||
PrecompiledAddressesByzantium = append(PrecompiledAddressesByzantium, k)
|
||||
}
|
||||
for k := range PrecompiledContractsIstanbul {
|
||||
PrecompiledAddressesIstanbul = append(PrecompiledAddressesIstanbul, k)
|
||||
|
|
Loading…
Reference in New Issue