File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -627,12 +627,12 @@ def _run_solcs_path(
627
627
)
628
628
break
629
629
except InvalidCompilation as ic :
630
- compilation_errors .append (version_env + ': ' + ic .args [0 ])
630
+ compilation_errors .append (solc_bin + ': ' + ic .args [0 ])
631
631
pass
632
632
633
633
if not targets_json :
634
634
raise InvalidCompilation (
635
- "Invalid solc compilation, none of the solc versions provided worked:\n " + '\n ' .join (compilation_errors )
635
+ "Invalid solc compilation, none of the solc versions provided worked:\n " + '\n ' .join (compilation_errors )
636
636
)
637
637
638
638
return targets_json
@@ -715,12 +715,12 @@ def _run_solcs_env(
715
715
)
716
716
break
717
717
except InvalidCompilation as ic :
718
- compilation_errors .append (version_env + ': ' + ic .args [0 ])
718
+ compilation_errors .append (version_env + ': ' + ic .args [0 ])
719
719
pass
720
720
721
721
if not targets_json :
722
722
raise InvalidCompilation (
723
- "Invalid solc compilation, none of the solc versions provided worked:\n " + '\n ' .join (compilation_errors )
723
+ "Invalid solc compilation, none of the solc versions provided worked:\n " + '\n ' .join (compilation_errors )
724
724
)
725
725
726
726
return targets_json
You can’t perform that action at this time.
0 commit comments