mirror of https://github.com/embarklabs/embark.git
43 lines
814 B
Solidity
43 lines
814 B
Solidity
pragma solidity ^0.4.17;
|
|
|
|
import "ownable.sol";
|
|
|
|
library Assert {
|
|
event TestEvent(bool passed, string message);
|
|
|
|
function triggerEvent(bool passed, string message) internal {
|
|
TestEvent(passed, message);
|
|
}
|
|
}
|
|
|
|
contract SimpleStorage is Ownable {
|
|
uint public storedData;
|
|
|
|
function() public payable { }
|
|
|
|
function SimpleStorage(uint initialValue) public {
|
|
storedData = initialValue;
|
|
}
|
|
|
|
function set(uint x) public {
|
|
storedData = x;
|
|
for(uint i = 0; i < 1000; i++) {
|
|
storedData += i;
|
|
}
|
|
Assert.triggerEvent(true, "hi");
|
|
}
|
|
|
|
function set2(uint x, uint unusedGiveWarning) public onlyOwner {
|
|
storedData = x;
|
|
}
|
|
|
|
function get() public view returns (uint retVal) {
|
|
return storedData;
|
|
}
|
|
|
|
function getS() public pure returns (string d) {
|
|
return "hello";
|
|
}
|
|
|
|
}
|