Skip to content

Commit

Permalink
update the latest Solc to 0.8.19
Browse files Browse the repository at this point in the history
  • Loading branch information
taquangtrung committed Mar 14, 2023
1 parent 1a996ab commit 430976a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solc_detect/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def init_all_solidity_versions():
solidity_0_5 = ['0.5.%d' % i for i in range(18)] # 0.5.0 --> 0.5.17
solidity_0_6 = ['0.6.%d' % i for i in range(13)] # 0.6.0 --> 0.6.12
solidity_0_7 = ['0.7.%d' % i for i in range(7)] # 0.7.0 --> 0.7.6
solidity_0_8 = ['0.8.%d' % i for i in range(19)] # 0.8.0 --> 0.8.19
solidity_0_8 = ['0.8.%d' % i for i in range(20)] # 0.8.0 --> 0.8.19

all_versions = (solidity_0_4 +
solidity_0_5 +
Expand Down

0 comments on commit 430976a

Please sign in to comment.