Skip to content

Instantly share code, notes, and snippets.

@tim-br
Created June 5, 2016 22:42
Show Gist options
  • Save tim-br/c63bfb18c028998350711e959d06ef18 to your computer and use it in GitHub Desktop.
Save tim-br/c63bfb18c028998350711e959d06ef18 to your computer and use it in GitHub Desktop.
contract TestEvent{
string greeting;
event TeEv(string input);
function TestEvent(string _greeting){
greeting = _greeting;
}
function get_greeting() constant returns(string){
TeEv("in get_greeting function");
return greeting;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment