2019-05-06 16:55:10 +00:00
|
|
|
contract Small {
|
|
|
|
uint public a;
|
|
|
|
uint[] public b;
|
|
|
|
function f1(uint x) public returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
|
2019-09-09 16:22:02 +00:00
|
|
|
fallback () external payable {}
|
2019-05-06 16:55:10 +00:00
|
|
|
}
|
|
|
|
// ====
|
|
|
|
// optimize: true
|
|
|
|
// optimize-runs: 2
|
|
|
|
// ----
|
2019-05-06 12:31:49 +00:00
|
|
|
// creation:
|
2021-02-11 08:46:25 +00:00
|
|
|
// codeDepositCost: 61800
|
|
|
|
// executionCost: 111
|
|
|
|
// totalCost: 61911
|
2019-05-06 16:55:10 +00:00
|
|
|
// external:
|
|
|
|
// fallback: 118
|
2021-01-14 12:02:14 +00:00
|
|
|
// a(): 961
|
|
|
|
// b(uint256): 1985
|
|
|
|
// f1(uint256): 41220
|