You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the message generation for calls to known and unknown addresses is inconsistent, with the message for known calls being correct. It would be better to factor out the message generation and use the same message for both types of calls.
This issue isn't critical because the message for unknown calls is used only for tracing purposes, and most unknown calls use the CALL scheme. However, the trace information could be incorrect or confusing if there are unknown calls via DELEGATECALL.
Note: the message generation code is updated by PR #336, but this issue is orthogonal, and can be fixed after merging the PR.
The text was updated successfully, but these errors were encountered:
Currently, the message generation for calls to known and unknown addresses is inconsistent, with the message for known calls being correct. It would be better to factor out the message generation and use the same message for both types of calls.
Message for known calls:
halmos/src/halmos/sevm.py
Lines 1579 to 1586 in f7ff1f8
Message for unknown calls:
halmos/src/halmos/sevm.py
Lines 1776 to 1782 in f7ff1f8
This issue isn't critical because the message for unknown calls is used only for tracing purposes, and most unknown calls use the CALL scheme. However, the trace information could be incorrect or confusing if there are unknown calls via DELEGATECALL.
Note: the message generation code is updated by PR #336, but this issue is orthogonal, and can be fixed after merging the PR.
The text was updated successfully, but these errors were encountered: