Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
0xrajath committed Apr 3, 2024
1 parent acb1b65 commit 60c1778
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/guards/LlamaAccountExecuteGuard.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ contract LlamaAccountExecuteGuard is ILlamaActionGuardMinimalProxy, Initializabl
// ======== Structs ========
// =========================

/// @dev Llama account execute guard initialization configuration.
struct Config {
AuthorizedTargetConfig[] authorizedTargets; // The authorized targets and their call type.
}

/// @dev Authorized target configuration.
struct AuthorizedTargetConfig {
address target; // The target contract.
bool withDelegatecall; // Call type.
bool isAuthorized; // Is the target authorized.
}

/// @dev Llama account execute guard initialization configuration.
struct Config {
AuthorizedTargetConfig[] authorizedTargets; // The authorized targets and their call type.
}

// =========================
// ======== Errors ========
// =========================
Expand Down

0 comments on commit 60c1778

Please sign in to comment.