mirror of https://github.com/ConsenSys/mythril
blockchainethereumsmart-contractssoliditysecurityprogram-analysissecurity-analysissymbolic-execution
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
681 B
37 lines
681 B
2 years ago
|
pragma solidity ^0.4.11;
|
||
|
|
||
|
|
||
|
contract Origin {
|
||
|
address public owner;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
|
||
|
* account.
|
||
|
*/
|
||
|
function Origin() {
|
||
|
owner = msg.sender;
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @dev Throws if called by any account other than the owner.
|
||
|
*/
|
||
|
modifier onlyOwner() {
|
||
|
require(tx.origin != owner);
|
||
|
_;
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @dev Allows the current owner to transfer control of the contract to a newOwner.
|
||
|
* @param newOwner The address to transfer ownership to.
|
||
|
*/
|
||
|
function transferOwnership(address newOwner) public onlyOwner {
|
||
|
if (newOwner != address(0)) {
|
||
|
owner = newOwner;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|