Skip to content

Instantly share code, notes, and snippets.

@martin31821
Created November 25, 2018 07:48
Show Gist options
  • Save martin31821/5b08854eeafbeba818f322969de61ff7 to your computer and use it in GitHub Desktop.
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=
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