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
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"
}
}
},