diff --git a/src/guards/LlamaAccountExecuteGuard.sol b/src/guards/LlamaAccountExecuteGuard.sol index 4c276990..84538066 100644 --- a/src/guards/LlamaAccountExecuteGuard.sol +++ b/src/guards/LlamaAccountExecuteGuard.sol @@ -17,11 +17,6 @@ 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. @@ -29,6 +24,11 @@ contract LlamaAccountExecuteGuard is ILlamaActionGuardMinimalProxy, Initializabl 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 ======== // =========================