Low-level call returns success even if the contract is non-existent. This requires a contract existence check before making the low-level call (TimeLock.sol L93).
See: The low-level functionscall,delegatecallandstaticcallreturntrueas their first return value if the account called is non-existent, as part of the design of the EVM. Accountexistencemust be checked prior to calling if needed. from https://docs.soliditylang.org/en/v0.8.7/control-structures.html#error-handling-assert-require-revert-and-exceptions
Recommend checking for target contract existence before call.
alcueca (Yield) confirmed:
alcueca (Yield) patched:
