diff options
author | chriseth <chris@ethereum.org> | 2018-05-02 23:54:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-02 23:54:51 +0800 |
commit | 42d6547bded732c39ee921e691c3a18a1d52fc80 (patch) | |
tree | 8500ca5c51a2836dc3e8b8e0c061bb3e9eeeeb32 /solc/CommandLineInterface.cpp | |
parent | e681f4ee7924ebc419e0bd878b8640c63b17a0c8 (diff) | |
parent | 1367fedfd0fc1d83aa9d51d9fe9e31df1eb1ac2a (diff) | |
download | dexon-solidity-42d6547bded732c39ee921e691c3a18a1d52fc80.tar dexon-solidity-42d6547bded732c39ee921e691c3a18a1d52fc80.tar.gz dexon-solidity-42d6547bded732c39ee921e691c3a18a1d52fc80.tar.bz2 dexon-solidity-42d6547bded732c39ee921e691c3a18a1d52fc80.tar.lz dexon-solidity-42d6547bded732c39ee921e691c3a18a1d52fc80.tar.xz dexon-solidity-42d6547bded732c39ee921e691c3a18a1d52fc80.tar.zst dexon-solidity-42d6547bded732c39ee921e691c3a18a1d52fc80.zip |
Merge pull request #4048 from JonnyBurger/develop
Improve documentation and CLI help for `--run` parameter
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r-- | solc/CommandLineInterface.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index bd5e2eb1..1f04c68a 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -564,7 +564,8 @@ Allowed options)", ( g_argOptimizeRuns.c_str(), po::value<unsigned>()->value_name("n")->default_value(200), - "Estimated number of contract runs for optimizer tuning." + "Set for how many contract runs to optimize." + "Lower values will optimize more for initial deployment cost, higher values will optimize more for high-frequency usage." ) (g_argPrettyJson.c_str(), "Output JSON in pretty format. Currently it only works with the combined JSON output.") ( |