From 4b72d6272e414aeb162222579493e866a76286f1 Mon Sep 17 00:00:00 2001 From: Jay Paik Date: Wed, 24 Jan 2024 19:34:07 -0500 Subject: [PATCH] fix: improve comments in IPluginExecutor interface --- standard/ERCs/erc-6900.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/standard/ERCs/erc-6900.md b/standard/ERCs/erc-6900.md index 86c1d106..9f9de2ce 100644 --- a/standard/ERCs/erc-6900.md +++ b/standard/ERCs/erc-6900.md @@ -186,10 +186,9 @@ This prevents accidental misconfiguration or misuse of plugins (both installed a ```solidity interface IPluginExecutor { - /// @notice Execute a call from a plugin to another plugin, via an execution function installed on the account. - /// @dev Plugins are not allowed to call native functions on the account. Permissions must be granted to the - /// calling plugin for the call to go through. - /// @param data The calldata to send to the plugin. + /// @notice Execute a call from a plugin through the account. + /// @dev Permissions must be granted to the calling plugin for the call to go through. + /// @param data The calldata to send to the account. /// @return The return data from the call. function executeFromPlugin(bytes calldata data) external payable returns (bytes memory);