mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +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)
|
||||
}
|
||||
for k := range PrecompiledContractsByzantium {
|
||||
PrecompiledAddressesHomestead = append(PrecompiledAddressesByzantium, k)
|
||||
PrecompiledAddressesByzantium = append(PrecompiledAddressesByzantium, k)
|
||||
}
|
||||
for k := range PrecompiledContractsIstanbul {
|
||||
PrecompiledAddressesIstanbul = append(PrecompiledAddressesIstanbul, k)
|
||||
|
|
|
|||
Loading…
Reference in a new issue