diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-03-09 17:05:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-09 17:05:09 +0800 |
commit | 38e2071df8fd93084539827bec404f206122fb63 (patch) | |
tree | 9e86e1843a2e20857cee8f76865583a4e8a417d7 | |
parent | b2f53f962175ed8f7483065d19ab8b8130f72e83 (diff) | |
parent | a25561dfb47fd2b9ee2dc4e1333508a1742e2562 (diff) | |
download | go-tangerine-38e2071df8fd93084539827bec404f206122fb63.tar go-tangerine-38e2071df8fd93084539827bec404f206122fb63.tar.gz go-tangerine-38e2071df8fd93084539827bec404f206122fb63.tar.bz2 go-tangerine-38e2071df8fd93084539827bec404f206122fb63.tar.lz go-tangerine-38e2071df8fd93084539827bec404f206122fb63.tar.xz go-tangerine-38e2071df8fd93084539827bec404f206122fb63.tar.zst go-tangerine-38e2071df8fd93084539827bec404f206122fb63.zip |
Merge pull request #16289 from jeffwalsh/remove-add-std-arg
common/compiler: remove "--add-std" arg, deprecated in solidity 0.4.21
-rw-r--r-- | common/compiler/solidity.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/compiler/solidity.go b/common/compiler/solidity.go index abb803989..234714a2b 100644 --- a/common/compiler/solidity.go +++ b/common/compiler/solidity.go @@ -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 { |