Skip to content

Commit

Permalink
core/vm: fix Byzantium address list (#22603)
Browse files Browse the repository at this point in the history
  • Loading branch information
nebojsa94 authored Mar 30, 2021
1 parent 59ac3c9 commit 44fe466
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 44fe466

Please sign in to comment.