Skip to content

Commit 8ade5c5

Browse files
committed
fix: disable slither warnings for calls-loop in signature verification
1 parent c230a57 commit 8ade5c5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/core/TxAuthManager.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ abstract contract TxAuthManager is TxAuthManagerBase, CrossStore {
9898

9999
CrossStore.AuthStorage storage s = _getAuthStorage();
100100

101+
// slither-disable-start calls-loop
101102
for (uint256 i = 0; i < len; ++i) {
102103
Account.Data calldata signer = signers[i];
103104

@@ -123,6 +124,7 @@ abstract contract TxAuthManager is TxAuthManagerBase, CrossStore {
123124
revert VerifierReturnedFalse(txIDHash, typeUrl);
124125
}
125126
}
127+
// slither-disable-end calls-loop
126128
}
127129

128130
function _setStateFromRemainingList(CrossStore.AuthStorage storage s, bytes32 txID, Account.Data[] memory list)

0 commit comments

Comments
 (0)