Skip to content

Commit

Permalink
chore: add back bytes24 key comment for callPermitted
Browse files Browse the repository at this point in the history
  • Loading branch information
jaypaik committed Jan 21, 2024
1 parent a385d66 commit b504688
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libraries/AccountStorageV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ contract AccountStorageV1 {
mapping(address => PluginData) pluginData;
// Execution functions and their associated functions
mapping(bytes4 => SelectorData) selectorData;
// bytes24 key = address(calling plugin) || bytes4(selector of execution function)
mapping(bytes24 => bool) callPermitted;
// key = address(calling plugin) || target address
// keys = address(calling plugin), target address
mapping(IPlugin => mapping(address => PermittedExternalCallData)) permittedExternalCalls;
// For ERC165 introspection, each count indicates support from account or an installed plugin
// 0 indicate the account does not support the interface and all plugins that support this interface have
Expand Down

0 comments on commit b504688

Please sign in to comment.