diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-27 20:59:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-27 20:59:50 +0800 |
commit | 122dc65b3608b368897701dbdebc689bc614933f (patch) | |
tree | b990cac753b0fbc2ce19ad651f2f8e8c3664142f | |
parent | abe77f48b621c55366012e7c0ddaa3f88535e0d7 (diff) | |
parent | cd29a0315da6da0bc1f51f0a3789bba6642cf36e (diff) | |
download | dexon-solidity-122dc65b3608b368897701dbdebc689bc614933f.tar dexon-solidity-122dc65b3608b368897701dbdebc689bc614933f.tar.gz dexon-solidity-122dc65b3608b368897701dbdebc689bc614933f.tar.bz2 dexon-solidity-122dc65b3608b368897701dbdebc689bc614933f.tar.lz dexon-solidity-122dc65b3608b368897701dbdebc689bc614933f.tar.xz dexon-solidity-122dc65b3608b368897701dbdebc689bc614933f.tar.zst dexon-solidity-122dc65b3608b368897701dbdebc689bc614933f.zip |
Merge pull request #2188 from ethereum/docs-jsonio
Update the gasEstimates in JSON I/O
-rw-r--r-- | docs/using-the-compiler.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index deaa1329..b74da213 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -251,15 +251,15 @@ Output Description // Function gas estimates gasEstimates: { creation: { - dataCost: 420000, - // -1 means infinite (aka. unknown) - executionCost: -1 + codeDepositCost: "420000", + executionCost: "infinite", + totalCost: "infinite" }, external: { - "delegate(address)": 25000 + "delegate(address)": "25000" }, internal: { - "heavyLifting()": -1 + "heavyLifting()": "infinite" } } }, |