Skip to content

Commit 33acbc8

Browse files
authored
Merge pull request #2751 from sidarth16/patch-5
FIxed typo of solidity and conditions
2 parents 7dcefcc + c68a76b commit 33acbc8

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

FUNDING.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
"ethereum": {
99
"ownedBy": "0xc44F30Be3eBBEfdDBB5a85168710b4f0e18f4Ff0"
1010
}
11-
}
11+
},
12+
"opRetro": {
13+
"projectId": "0xdc3dce33fd5fb50cf932586d4257456ddf5040ba0955d97641646504c73dbd13"
14+
}
1215
}

funding.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"opRetro": {
3+
"projectId": "0xdc3dce33fd5fb50cf932586d4257456ddf5040ba0955d97641646504c73dbd13"
4+
}
5+
}

slither/core/declarations/function.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@ def all_conditional_solidity_variables_read(
12951295
self, include_loop: bool = True
12961296
) -> List[SolidityVariable]:
12971297
"""
1298-
Return the Soldiity variables directly used in a condtion
1298+
Return the Solidity variables directly used in a condition
12991299
13001300
Use of the IR to filter index access
13011301
Assumption: the solidity vars are used directly in the conditional node
@@ -1337,7 +1337,7 @@ def _explore_func_nodes(
13371337

13381338
def all_solidity_variables_used_as_args(self) -> List[SolidityVariable]:
13391339
"""
1340-
Return the Soldiity variables directly used in a call
1340+
Return the Solidity variables directly used in a call
13411341
13421342
Use of the IR to filter index access
13431343
Used to catch check(msg.sender)

0 commit comments

Comments
 (0)