Skip to content

Commit

Permalink
Update contracts/base/ModuleManager.sol
Browse files Browse the repository at this point in the history
Co-authored-by: Nicholas Rodrigues Lordello <n@lordello.net>
  • Loading branch information
akshay-ap and nlordell committed Jun 27, 2024
1 parent 64cd4f5 commit be35fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/base/ModuleManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ abstract contract ModuleManager is SelfAuthorized, Executor, IModuleManager {
uint256 value,
bytes memory data,
Enum.Operation operation
) public override returns (bool success) {
) external override returns (bool success) {
onBeforeExecTransactionFromModule(to, value, data, operation);
(address guard, bytes32 guardHash) = preModuleExecution(to, value, data, operation);
success = execute(to, value, data, operation, type(uint256).max);
Expand Down

0 comments on commit be35fef

Please sign in to comment.