mirror of
https://github.com/status-im/github-oracle.git
synced 2026-08-31 03:41:16 +00:00
11 lines
166 B
Solidity
11 lines
166 B
Solidity
pragma solidity ^0.4.8;
|
|
|
|
contract Owned {
|
|
|
|
address public owner= msg.sender;
|
|
|
|
modifier only_owner {
|
|
if (msg.sender != owner) throw;
|
|
_;
|
|
}
|
|
} |