mirror of
https://github.com/Instadapp/yield-contract.git
synced 2024-07-29 21:47:29 +00:00
an open end to change owner via spell()
This commit is contained in:
parent
85bd5774b8
commit
51f2867cf1
|
@ -116,7 +116,6 @@ contract Flusher {
|
|||
require(_target != address(0), "target-invalid");
|
||||
require(_data.length > 0, "data-invalid");
|
||||
bytes memory _callData = _data;
|
||||
address _owner = owner;
|
||||
assembly {
|
||||
let succeeded := delegatecall(gas(), _target, add(_callData, 0x20), mload(_callData), 0, 0)
|
||||
switch iszero(succeeded)
|
||||
|
@ -127,7 +126,6 @@ contract Flusher {
|
|||
revert(0x00, size)
|
||||
}
|
||||
}
|
||||
require(_owner == owner, "owner-change-denied");
|
||||
}
|
||||
|
||||
receive() external payable {}
|
||||
|
|
Loading…
Reference in New Issue
Block a user