diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-27 20:13:49 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-27 20:37:51 +0800 |
commit | cd29a0315da6da0bc1f51f0a3789bba6642cf36e (patch) | |
tree | b990cac753b0fbc2ce19ad651f2f8e8c3664142f /docs/using-the-compiler.rst | |
parent | abe77f48b621c55366012e7c0ddaa3f88535e0d7 (diff) | |
download | dexon-solidity-cd29a0315da6da0bc1f51f0a3789bba6642cf36e.tar.gz dexon-solidity-cd29a0315da6da0bc1f51f0a3789bba6642cf36e.tar.zst dexon-solidity-cd29a0315da6da0bc1f51f0a3789bba6642cf36e.zip |
Update the gasEstimates in JSON I/O
Diffstat (limited to 'docs/using-the-compiler.rst')
-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" } } }, |