File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ contract DelegatedManager is Ownable {
112112 }
113113
114114 /**
115- * Throws if the sender is not a listed extension
115+ * Throws if the sender is not an initialized extension
116116 */
117117 modifier onlyExtension () {
118118 require (extensionAllowlist[msg .sender ] == ExtensionState.INITIALIZED, "Must be initialized extension " );
@@ -127,7 +127,7 @@ contract DelegatedManager is Ownable {
127127 // Address of factory contract used to deploy contract
128128 address public immutable factory;
129129
130- // Mapping to check which ExtensionState an given extension is in
130+ // Mapping to check which ExtensionState a given extension is in
131131 mapping (address => ExtensionState) public extensionAllowlist;
132132
133133 // Array of initialized extensions
@@ -197,7 +197,7 @@ contract DelegatedManager is Ownable {
197197 }
198198
199199 /**
200- * OPERATOR ONLY: Transfers _tokens held by the manager to _destination. Can be used to
200+ * EXTENSION ONLY: Transfers _tokens held by the manager to _destination. Can be used to
201201 * distribute fees or recover anything sent here accidentally.
202202 *
203203 * @param _token ERC20 token to send
You can’t perform that action at this time.
0 commit comments