Created
November 25, 2018 07:48
-
-
Save martin31821/5b08854eeafbeba818f322969de61ff7 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.4.25+commit.59dbf8f1.js&optimize=false&gist=
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.25; | |
contract SubmissionATN { | |
string submissionHash; | |
function get() public view returns (string hash) { | |
hash = submissionHash; | |
} | |
function set(string hash) public { | |
submissionHash = hash; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment