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
CairoU256::from_bytes accepts an unbound u8 slice, panicking if it's shorter than 32 bytes and ignoring the extra bytes if it's longer.
The argument should be a fixed-sized slice - &[u8; 32].
Usage in cheatnet::runtime_extensions::forge_runtime_extension should be adjusted to the new method.