Skip to content

Instantly share code, notes, and snippets.

View awrelll's full-sized avatar
💭
Lost in Cosmos

Iancu Aurel awrelll

💭
Lost in Cosmos
View GitHub Profile
@awrelll
awrelll / Member DAO
Created January 5, 2016 17:02 — forked from anonymous/Member DAO
Created using soleditor: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://chriseth.github.io/browser-solidity?gist=
contract owned {
address public owner;
function owned() {
owner = msg.sender;
}
modifier onlyOwner {
if (msg.sender != owner) throw;
_