aboutsummaryrefslogtreecommitdiffstats
path: root/std/owned.sol
diff options
context:
space:
mode:
Diffstat (limited to 'std/owned.sol')
-rw-r--r--std/owned.sol15
1 files changed, 0 insertions, 15 deletions
diff --git a/std/owned.sol b/std/owned.sol
deleted file mode 100644
index 75007f3e..00000000
--- a/std/owned.sol
+++ /dev/null
@@ -1,15 +0,0 @@
-pragma solidity ^0.4.22;
-
-contract owned {
- address owner;
-
- modifier onlyowner() {
- if (msg.sender == owner) {
- _;
- }
- }
-
- constructor() public {
- owner = msg.sender;
- }
-}