Update the gasEstimates in JSON I/O

This commit is contained in:
Alex Beregszaszi 2017-04-27 13:13:49 +01:00
parent abe77f48b6
commit cd29a0315d

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