Skip to content

Commit

Permalink
Update contracts/governance/TimelockController.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
Joeysantoro committed Apr 8, 2022
1 parent e861f28 commit 14a0ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/governance/TimelockController.sol
Expand Up @@ -342,7 +342,7 @@ contract TimelockController is AccessControl, IERC721Receiver, IERC1155Receiver
bytes calldata data
) internal virtual {
(bool success, bytes memory returndata) = target.call{value: value}(data);
Address.verifyCallResult(success, returndata, "TimelockController: underlying transaction reverted");
require(success, "TimelockController: underlying transaction reverted");
}

/**
Expand Down

0 comments on commit 14a0ac3

Please sign in to comment.