Unverified Commit 44fe4669 authored by nebojsa94's avatar nebojsa94 Committed by GitHub

core/vm: fix Byzantium address list (#22603)

parent 59ac3c9f
...@@ -118,7 +118,7 @@ func init() { ...@@ -118,7 +118,7 @@ func init() {
PrecompiledAddressesHomestead = append(PrecompiledAddressesHomestead, k) PrecompiledAddressesHomestead = append(PrecompiledAddressesHomestead, k)
} }
for k := range PrecompiledContractsByzantium { for k := range PrecompiledContractsByzantium {
PrecompiledAddressesHomestead = append(PrecompiledAddressesByzantium, k) PrecompiledAddressesByzantium = append(PrecompiledAddressesByzantium, k)
} }
for k := range PrecompiledContractsIstanbul { for k := range PrecompiledContractsIstanbul {
PrecompiledAddressesIstanbul = append(PrecompiledAddressesIstanbul, k) PrecompiledAddressesIstanbul = append(PrecompiledAddressesIstanbul, k)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment