mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-09 14:34:27 +00:00
core/vm: fix Byzantium address list (#22603)
This commit is contained in:
parent
c6744e1a9f
commit
a020259bb5
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,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)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue