Contract fails to deliver promised returns, but doesn't lose value
Description
Brief/Intro
Timelock.sol has executeTransaction() function which takes the target address, calldata and operation ID as arguments, and it calls the function specified in calldata along with the argument values on the target address.
Vulnerability Details
First of all, there is no input validation on the target address as well as the call data being supplied in the argument, which is fine. But there is no check on whether the external call succeeded or not.
While, current implementation does catch boolean return by external call indication success or failure of the same.
But, there is no check placed using that boolean to verify the transaction succeeded or not.
Impact Details
In cases, where wrong inputs (like non-existent address or incorrect signatures) are provided to executeTransaction i, the external call will silently fail.