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
{{ message }}
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
When calling "claim_points" [https://github.com/ClementCauffet/starknet-cairo-101/blob/main/contracts/ex04.cairo] the main test it does is the following :
// Checking that the value provided by the user is the one we expect // Yes, I'm sneaky let (value) = values_mapped_storage.read(user_slot); with_attr error_message("Input value is not the expected secret value") { assert value = expected_value + 32; }
where "expected_value" is the value you sent as a parameter (2615 in your example)
To solve this, you might need to focus on the "=" statement in this !
Good luck :)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It doesn't work for me here, I tried many things.
Someone see what m I doing wrong please?
The text was updated successfully, but these errors were encountered: