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

Commit

Permalink
problem: solidity --add-std deprecated
Browse files Browse the repository at this point in the history
was removed in 0.4.21

> ethereum/solidity#3695
> https://github.com/ethereum/go-ethereum/pull/16289/files

Rel #583

solution: remove flag option
  • Loading branch information
whilei committed May 9, 2018
1 parent 867b073 commit 50d8bbc
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 50d8bbc

Please sign in to comment.