aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorJeffery Robert Walsh <rlxrlps@gmail.com>2018-03-09 10:05:56 +0800
committerGitHub <noreply@github.com>2018-03-09 10:05:56 +0800
commita25561dfb47fd2b9ee2dc4e1333508a1742e2562 (patch)
tree9e86e1843a2e20857cee8f76865583a4e8a417d7 /common
parentb2f53f962175ed8f7483065d19ab8b8130f72e83 (diff)
downloadgo-tangerine-a25561dfb47fd2b9ee2dc4e1333508a1742e2562.tar
go-tangerine-a25561dfb47fd2b9ee2dc4e1333508a1742e2562.tar.gz
go-tangerine-a25561dfb47fd2b9ee2dc4e1333508a1742e2562.tar.bz2
go-tangerine-a25561dfb47fd2b9ee2dc4e1333508a1742e2562.tar.lz
go-tangerine-a25561dfb47fd2b9ee2dc4e1333508a1742e2562.tar.xz
go-tangerine-a25561dfb47fd2b9ee2dc4e1333508a1742e2562.tar.zst
go-tangerine-a25561dfb47fd2b9ee2dc4e1333508a1742e2562.zip
common/compiler: remove "--add-std" arg, deprecated in solidity 0.4.21
Diffstat (limited to 'common')
-rw-r--r--common/compiler/solidity.go1
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 {