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:
|
2023-04-26 11:03:17 +00:00
|
|
|
// codeDepositCost: 58200
|
|
|
|
// executionCost: 109
|
|
|
|
// totalCost: 58309
|
2019-05-06 16:55:10 +00:00
|
|
|
// external:
|
2023-04-26 11:03:17 +00:00
|
|
|
// fallback: 117
|
|
|
|
// a(): 2259
|
|
|
|
// b(uint256): 4582
|
|
|
|
// f1(uint256): 46716
|