Skip to content

Instantly share code, notes, and snippets.

@aakilfernandes
Created January 24, 2016 01:19
Show Gist options
  • Save aakilfernandes/80a8968f1c76d824a477 to your computer and use it in GitHub Desktop.
Save aakilfernandes/80a8968f1c76d824a477 to your computer and use it in GitHub Desktop.
Order 1
contract Order{
address owner;
uint timestamp;
function Order(){
owner = msg.sender;
timestamp = now;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment