mirror of https://github.com/embarklabs/embark.git
35 lines
727 B
Solidity
35 lines
727 B
Solidity
pragma solidity ^0.4.17;
|
|
|
|
import "https://github.com/embark-framework/embark/blob/develop/test_apps/contracts_app/contracts/ownable.sol";
|
|
|
|
|
|
contract SimpleStorageWithHttpImport is Ownable {
|
|
uint public storedData;
|
|
|
|
function() public payable { }
|
|
|
|
function SimpleStorageWithHttpImport(uint initialValue) public {
|
|
storedData = initialValue;
|
|
}
|
|
|
|
function set(uint x) public {
|
|
storedData = x;
|
|
for(uint i = 0; i < 1000; i++) {
|
|
storedData += i;
|
|
}
|
|
}
|
|
|
|
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";
|
|
}
|
|
|
|
}
|