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

This commit is contained in:
Daniel Liu 2024-09-19 09:46:23 +08:00 committed by Daniel Liu
parent c6744e1a9f
commit a020259bb5

View file

@ -110,7 +110,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)