aboutsummaryrefslogtreecommitdiffstats
path: root/docs/using-the-compiler.rst
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-04-27 20:13:49 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-04-27 20:37:51 +0800
commitcd29a0315da6da0bc1f51f0a3789bba6642cf36e (patch)
treeb990cac753b0fbc2ce19ad651f2f8e8c3664142f /docs/using-the-compiler.rst
parentabe77f48b621c55366012e7c0ddaa3f88535e0d7 (diff)
downloaddexon-solidity-cd29a0315da6da0bc1f51f0a3789bba6642cf36e.tar
dexon-solidity-cd29a0315da6da0bc1f51f0a3789bba6642cf36e.tar.gz
dexon-solidity-cd29a0315da6da0bc1f51f0a3789bba6642cf36e.tar.bz2
dexon-solidity-cd29a0315da6da0bc1f51f0a3789bba6642cf36e.tar.lz
dexon-solidity-cd29a0315da6da0bc1f51f0a3789bba6642cf36e.tar.xz
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.rst10
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"
}
}
},