mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #2188 from ethereum/docs-jsonio
Update the gasEstimates in JSON I/O
This commit is contained in:
commit
122dc65b36
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user