MrAzteca
MrAzteca
Are you using vscode? (or codium) If so, just add this to the config: ```json "rust-analyzer.cargo.allFeatures": true, ```
Hello, We've seen this error before, it has to do with the contract ABI. Contracts are invoked with a list of felts as arguments, then Cairo's serde (not Rust's, even...
Hello, sorry for the delay. Could you try if the error still happens using the branch in #731? Thanks.
Hello, I think we've managed to isolate the issue and implement a fix for this issue. Could you try if the fix's branch (`fix-zero-variant-enum-matches`) fixes this bug? Thank you.
Done by #694.
All recursive programs of a certain depth which are not tail-recursve will blow up the stack (there's an example of such program in `programs/sample.cairo`). This is not specific of Cairo,...
I think Inter-contract recursion depth should ideally be checked externally since we're returning control to the user (via the trait) and it's the user's responsibility to make the actual. Any...
They should be implemented in the code. However they can't be tested agains the VM since the cairo compiler doesn't generate them. In some cases (addition and multiplication) they should...
The problem lies in MLIR's canonicalization pass. If you run `mlir-opt --canonicalize contract.mlir` it'll crash with an out of memory. Disclaimer: Test the bug at your own risk, OOM errors...
`ArgumentMapper` doesn't exist anymore.