This repository was archived by the owner on Jun 24, 2026. It is now read-only.
Fix assertion failure in mappingchallenge.py#1517
Merged
Merged
Conversation
ekilmer
added a commit
that referenced
this pull request
Oct 18, 2019
* master: Remove generic exceptions (#1428) (#1537) Add missing will_write_memory event in write_bytes (#1535) Fix #1533 (#1534) Unsigned div constant folding simplification (#1530) ADDMOD and MULMOD fixes (#1531) perf: avoid multiple calls to read same self.PC (#1527) Adds test for memory max_exec_size (#1524) Add partial implementation of recvfrom syscall (#1514) perf: optimize decode_instruction (#1522) Clean-up log (#1520) Added storage change detection plugin (#1507) Add serialization/deserialization log messages. (#1518) Eliminate bogus generate_testcase argument. (#1517) Expose hard-coded dynamic load address for ELF sections (#1515)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
manticore/examples/evm/mappingchallenge.py
Line 67 in 085c1d4
The above line causes an assertion failure because the last argument should be an expression, not a string. This pull request eliminates the last argument to that call, allowing it to default to
None.