forked from cerc-io/laconicd-deprecated
fa77bae105
* Refactor * add script to run all tests * Spawn ethermintd in node script * Update README * kill process when test finished * add new test case * add yarn.lock inside tests to be tracked
32 lines
585 B
Solidity
32 lines
585 B
Solidity
// SPDX-License-Identifier: GPL-3.0
|
|
|
|
pragma solidity >=0.7.0 <0.9.0;
|
|
|
|
/**
|
|
* @title Storage
|
|
* @dev Store & retrieve value in a variable
|
|
*/
|
|
contract Storage {
|
|
|
|
uint256 number;
|
|
|
|
/**
|
|
* @dev Store value in variable
|
|
* @param num value to store
|
|
*/
|
|
function store(uint256 num) public {
|
|
number = num;
|
|
}
|
|
|
|
/**
|
|
* @dev Return value
|
|
* @return value of 'number'
|
|
*/
|
|
function retrieve() public view returns (uint256){
|
|
return number;
|
|
}
|
|
|
|
function shouldRevert() public {
|
|
require(false, 'This must REVERT');
|
|
}
|
|
} |