We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
when executing pythonic hints in rust, there's a small issue when accessing members of cairo structs:
eg
%{ if ids.err.value == 0: print(f"[CAIRO] OpEnd") %}
This should be equivalent to: %{ if memory[ids.err.address_] == 0: print(f"[CAIRO] OpEnd") %}
But fails because it's not dereferencing the err because of Expected relocatable at address 1:25517
err
Expected relocatable at address 1:25517
The text was updated successfully, but these errors were encountered:
enitrat
No branches or pull requests
when executing pythonic hints in rust, there's a small issue when accessing members of cairo structs:
eg
This should be equivalent to:
%{
if memory[ids.err.address_] == 0:
print(f"[CAIRO] OpEnd")
%}
But fails because it's not dereferencing the
err
because ofExpected relocatable at address 1:25517
The text was updated successfully, but these errors were encountered: