Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

Commit

Permalink
Merge pull request #589 from ethereumproject/fix/solc-version
Browse files Browse the repository at this point in the history
problem: solidity --add-std deprecated
  • Loading branch information
whilei authored May 9, 2018
2 parents 867b073 + 50d8bbc commit bc66999
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions common/compiler/solidity.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,13 @@ var (
"file", //
"--natspec-dev", // Request to output the contract's Natspec developer documentation.
"file",
"--add-std",
"1",
}
paramsNew = []string{
"--bin", // Request to output the contract in binary (hexadecimal).
"--abi", // Request to output the contract's JSON ABI interface.
"--userdoc", // Request to output the contract's Natspec user documentation.
"--devdoc", // Request to output the contract's Natspec developer documentation.
"--add-std", // include standard lib contracts
"--optimize", // code optimizer switched on
"-o", // output directory
}
Expand Down

0 comments on commit bc66999

Please sign in to comment.