Skip to content

Commit 8b9ba71

Browse files
authored
fix: improve comments in IPluginExecutor interface (#37)
1 parent 149a1d5 commit 8b9ba71

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

standard/ERCs/erc-6900.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,9 @@ This prevents accidental misconfiguration or misuse of plugins (both installed a
186186

187187
```solidity
188188
interface 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

0 commit comments

Comments
 (0)