Merge pull request #2188 from ethereum/docs-jsonio

Update the gasEstimates in JSON I/O
This commit is contained in:
Alex Beregszaszi 2017-04-27 13:59:50 +01:00 committed by GitHub
commit 122dc65b36

View File

@ -251,15 +251,15 @@ Output Description
// Function gas estimates // Function gas estimates
gasEstimates: { gasEstimates: {
creation: { creation: {
dataCost: 420000, codeDepositCost: "420000",
// -1 means infinite (aka. unknown) executionCost: "infinite",
executionCost: -1 totalCost: "infinite"
}, },
external: { external: {
"delegate(address)": 25000 "delegate(address)": "25000"
}, },
internal: { internal: {
"heavyLifting()": -1 "heavyLifting()": "infinite"
} }
} }
}, },