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:
|
2020-10-13 16:14:08 +00:00
|
|
|
// codeDepositCost: 85400
|
2019-05-06 12:31:49 +00:00
|
|
|
// executionCost: 135
|
2020-10-13 16:14:08 +00:00
|
|
|
// totalCost: 85535
|
2019-05-06 16:55:10 +00:00
|
|
|
// external:
|
2019-09-09 16:22:02 +00:00
|
|
|
// fallback: 129
|
2019-12-04 10:41:42 +00:00
|
|
|
// a(): 983
|
|
|
|
// b(uint256): 2002
|
|
|
|
// f1(uint256): 41263
|