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

chore: fix symbol error #1882

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion mythril/laser/ethereum/state/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def get_word_at(self, index: int) -> Union[int, BitVec]:
return result

def write_word_at(self, index: int, value: Union[int, BitVec, bool, Bool]) -> None:
"""Writes a 32 byte word to memory at the specified index`
"""Writes a 32 byte word to memory at the specified index

:param index: index to write to
:param value: the value to write to memory
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/solc_settings_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ def test_negative_solc_settings():
command = f"python3 {MYTH} analyze {file_path} --solv 0.8.0"
output = check_output(command, shell=True, stderr=STDOUT).decode("UTF-8")
assert (
"""ParserError: Source "@openzeppelin/contracts/token/PRC20/PRC20.sol"""
"""ParserError: Source "@openzeppelin/contracts/token/PRC20/PRC20.sol""""
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, Can you revert this change?

in output
)
Loading