File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -186,10 +186,9 @@ This prevents accidental misconfiguration or misuse of plugins (both installed a
186186
187187``` solidity
188188interface IPluginExecutor {
189- /// @notice Execute a call from a plugin to another plugin, via an execution function installed on the account.
190- /// @dev Plugins are not allowed to call native functions on the account. Permissions must be granted to the
191- /// calling plugin for the call to go through.
192- /// @param data The calldata to send to the plugin.
189+ /// @notice Execute a call from a plugin through the account.
190+ /// @dev Permissions must be granted to the calling plugin for the call to go through.
191+ /// @param data The calldata to send to the account.
193192 /// @return The return data from the call.
194193 function executeFromPlugin(bytes calldata data) external payable returns (bytes memory);
195194
You can’t perform that action at this time.
0 commit comments