solidity/test/libsolidity/gasTests/dispatch_small.sol
2019-12-04 11:41:42 +01:00

17 lines
366 B
Solidity

contract Small {
uint public a;
uint[] public b;
function f1(uint x) public returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
function () external payable {}
}
// ----
// creation:
// codeDepositCost: 83600
// executionCost: 135
// totalCost: 83735
// external:
// fallback: 118
// a(): 983
// b(uint256): 2002
// f1(uint256): 41263