Skip to content

Instantly share code, notes, and snippets.

View Smartinsurprotocol's full-sized avatar

Smartinsurprotocol

View GitHub Profile
pragma solidity ^0.4.16;
contract owned {
address public owner;
function owned() public {
owner = msg.sender;
}
modifier onlyOwner {
pragma solidity ^0.4.16;
contract owned {
address public owner;
function owned() public {
owner = msg.sender;
}
modifier onlyOwner {