good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 9bad7fa7 authored by Felix Lange's avatar Felix Lange Committed by GitHub
Browse files

common/compiler: fix lint issue (#19967)

parent 26f538b0
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,8 @@ type solcOutput struct {
func (s *Solidity) makeArgs() []string {
p := []string{
"--combined-json", "bin,bin-runtime,srcmap,srcmap-runtime,abi,userdoc,devdoc",
"--optimize", // code optimizer switched on
"--allow-paths", "., ./, ../", //default to support relative path: ./ ../ .
"--optimize", // code optimizer switched on
"--allow-paths", "., ./, ../", // default to support relative paths
}
if s.Major > 0 || s.Minor > 4 || s.Patch > 6 {
p[1] += ",metadata,hashes"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment