Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Wrong Argument Annoations in Slither #1233

Merged
merged 1 commit into from
Jun 17, 2022
Merged

Conversation

CharesFang
Copy link
Contributor

Few days ago, when I was trying to pass the solc compiling options to Slither by using the argument solc_args, e.g., Slither(my_contract, solc_arguments=my_args), it did not function. I checked the crytic-compile source code and found that the argument crytic-compile actually takes is solc_args instead of solc_arguments, as the link here and following code segment shows. The argument annotation in slither.py is wrong and it will mislead developers to pass the solc compiling options with wrong keys.

    solc: str = kwargs.get("solc", "solc")
    solc_disable_warnings: bool = kwargs.get("solc_disable_warnings", False)
    solc_arguments: str = kwargs.get("solc_args", "")
    solc_remaps: Optional[Union[str, List[str]]] = kwargs.get("solc_remaps", None)

@CLAassistant
Copy link

CLAassistant commented Jun 9, 2022

CLA assistant check
All committers have signed the CLA.

@0xalpharush 0xalpharush self-requested a review June 17, 2022 15:29
@montyly montyly merged commit 3416d05 into crytic:dev Jun 17, 2022
@montyly
Copy link
Contributor

montyly commented Jun 17, 2022

Great catch, thanks @CharesFang

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants