From cd29a0315da6da0bc1f51f0a3789bba6642cf36e Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Thu, 27 Apr 2017 13:13:49 +0100 Subject: Update the gasEstimates in JSON I/O --- docs/using-the-compiler.rst | 10 +++++----- 1 file 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" } } }, -- cgit v1.2.3