Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion FUNDING.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@
"ethereum": {
"ownedBy": "0xc44F30Be3eBBEfdDBB5a85168710b4f0e18f4Ff0"
}
}
},
"opRetro": {
"projectId": "0xdc3dce33fd5fb50cf932586d4257456ddf5040ba0955d97641646504c73dbd13"
}
}
5 changes: 5 additions & 0 deletions funding.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"opRetro": {
"projectId": "0xdc3dce33fd5fb50cf932586d4257456ddf5040ba0955d97641646504c73dbd13"
}
}
4 changes: 2 additions & 2 deletions slither/core/declarations/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -1295,7 +1295,7 @@ def all_conditional_solidity_variables_read(
self, include_loop: bool = True
) -> List[SolidityVariable]:
"""
Return the Soldiity variables directly used in a condtion
Return the Solidity variables directly used in a condition
Use of the IR to filter index access
Assumption: the solidity vars are used directly in the conditional node
Expand Down Expand Up @@ -1337,7 +1337,7 @@ def _explore_func_nodes(

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