Commit 9ec8d752 by Manuel Araoz

make Ownable transferrable

parent 1005b097
...@@ -13,4 +13,9 @@ contract Ownable { ...@@ -13,4 +13,9 @@ contract Ownable {
if (msg.sender == owner) if (msg.sender == owner)
_ _
} }
function transfer(address newOwner) onlyOwner {
owner = newOwner;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment