Skip to content

Commit

Permalink
fix: improve comments in IPluginExecutor interface
Browse files Browse the repository at this point in the history
  • Loading branch information
jaypaik committed Jan 25, 2024
1 parent 149a1d5 commit 4b72d62
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions standard/ERCs/erc-6900.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4b72d62

Please sign in to comment.