mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			491 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			491 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     uint public state = 0;
 | |
|     constructor(uint _state) payable {
 | |
|         state = _state;
 | |
|     }
 | |
|     function balance() public payable returns (uint256) {
 | |
|         return address(this).balance;
 | |
|     }
 | |
|     function update(uint _state) public {
 | |
|         state = _state;
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // constructor(), 2 wei: 3 ->
 | |
| // gas irOptimized: 107003
 | |
| // gas legacy: 151416
 | |
| // gas legacyOptimized: 108388
 | |
| // state() -> 3
 | |
| // balance() -> 2
 | |
| // balance -> 2
 | |
| // update(uint256): 4
 | |
| // state() -> 4
 |