Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Jun 1, 2023
1 parent 258b6a6 commit c5c4f7d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vyper/evm/opcodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
# 1. Fork rules go from oldest (lowest value) to newest (highest value).
# 2. Fork versions aren't actually tied to anything. They are not a part of our
# official API. *DO NOT USE THE VALUES FOR ANYTHING IMPORTANT* besides versioning.
# 3. Per VIP-3365, we support mainnet fork choice rules up to 1 year old (and may optionally have forward support for experimental/unreleased fork choice rules)
# 3. Per VIP-3365, we support mainnet fork choice rules up to 1 year old
# (and may optionally have forward support for experimental/unreleased
# fork choice rules)
_evm_versions = ("istanbul", "berlin", "london", "paris", "shanghai", "cancun")
EVM_VERSIONS: dict[str, int] = dict((v, i) for i, v in enumerate(_evm_versions))

Expand Down

0 comments on commit c5c4f7d

Please sign in to comment.