mirror of https://github.com/crytic/slither
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.
26 lines
468 B
26 lines
468 B
pragma solidity ^0.5.0;
|
|
|
|
contract TxOrigin {
|
|
|
|
address payable owner;
|
|
|
|
constructor() public{ owner = msg.sender; }
|
|
|
|
function bug0() public{
|
|
require(tx.origin == owner);
|
|
}
|
|
|
|
function bug2() public{
|
|
if (tx.origin != owner) {
|
|
revert();
|
|
}
|
|
}
|
|
|
|
function legit0() public{
|
|
require(tx.origin == msg.sender);
|
|
}
|
|
|
|
function legit1() public{
|
|
tx.origin.transfer(address(this).balance);
|
|
}
|
|
}
|
|
|