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
|
|
|
}
|
|
|
|
// ----
|
2019-05-06 12:31:49 +00:00
|
|
|
// creation:
|
2021-04-29 14:26:21 +00:00
|
|
|
// codeDepositCost: 114600
|
2021-02-11 08:46:25 +00:00
|
|
|
// executionCost: 159
|
2021-04-29 14:26:21 +00:00
|
|
|
// totalCost: 114759
|
2019-05-06 16:55:10 +00:00
|
|
|
// external:
|
2019-09-09 16:22:02 +00:00
|
|
|
// fallback: 129
|
2020-12-02 13:15:26 +00:00
|
|
|
// a(): 1107
|
|
|
|
// b(uint256): infinite
|
|
|
|
// f1(uint256): infinite
|