Skip to content

Commit

Permalink
refactor: update for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
skimaharvey committed Nov 1, 2023
1 parent d20f17d commit 2f1c4da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/LSP6KeyManager/LSP6KeyManagerCore.sol
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ abstract contract LSP6KeyManagerCore is
revert ERC725X_ExecuteParametersEmptyArray();
}

for (uint256 ii = 0; ii < operationTypes.length; ii++) {
for (uint256 ii; ii < operationTypes.length; ii++) {
LSP6ExecuteModule._verifyCanExecute(
targetContract,
from,
Expand Down

0 comments on commit 2f1c4da

Please sign in to comment.