Skip to content

Commit

Permalink
core/vm: fix Byzantium address list (ethereum#22603)
Browse files Browse the repository at this point in the history
  • Loading branch information
nebojsa94 authored and atif-konasl committed Oct 15, 2021
1 parent 87ca971 commit a0f2f2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/vm/contracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a0f2f2b

Please sign in to comment.