solidity/test/libsolidity/gasTests/dispatch_small.sol

17 lines
376 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:
2021-05-26 16:14:02 +00:00
// codeDepositCost: 108800
// executionCost: 153
// totalCost: 108953
// external:
// fallback: 129
// a(): 2407
2020-12-02 13:15:26 +00:00
// b(uint256): infinite
// f1(uint256): infinite