Merge pull request #16289 from jeffwalsh/remove-add-std-arg

common/compiler: remove "--add-std" arg, deprecated in solidity 0.4.21
This commit is contained in:
Péter Szilágyi 2018-03-09 11:05:09 +02:00 committed by GitHub
commit 38e2071df8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -65,7 +65,6 @@ type solcOutput struct {
func (s *Solidity) makeArgs() []string {
p := []string{
"--combined-json", "bin,abi,userdoc,devdoc",
"--add-std", // include standard lib contracts
"--optimize", // code optimizer switched on
}
if s.Major > 0 || s.Minor > 4 || s.Patch > 6 {