solidity/test/libsolidity/gasTests/dispatch_small.sol

17 lines
368 B
Solidity
Raw Normal View History

contract Small {
uint public a;
uint[] public b;
function f1(uint x) public returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
fallback () external payable {}
}
// ----
// creation:
2020-10-13 16:49:50 +00:00
// codeDepositCost: 103400
// executionCost: 153
// totalCost: 103553
// external:
// fallback: 129
2019-12-04 10:41:42 +00:00
// a(): 983
// b(uint256): 2002
// f1(uint256): 41263