Skip to content

Instantly share code, notes, and snippets.

@jecrespo
Created February 2, 2019 09:54
Show Gist options
  • Save jecrespo/48c2f849a45e011990db21ba2fe90326 to your computer and use it in GitHub Desktop.
Save jecrespo/48c2f849a45e011990db21ba2fe90326 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.0+commit.1d4f565a.js&optimize=false&gist=
pragma solidity ^0.5.0;
contract MessageStore {
string private _message;
address private _owner;
constructor() public{
_owner = msg.sender;
}
function getMessage() public view returns (string memory){
return _message;
}
function setMessage(string memory newMessage) public onlyOwner{
_message = newMessage;
}
modifier onlyOwner {
require(msg.sender == _owner);
_;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment