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 21, 2024. It is now read-only.
This is a test-only function. It should be behind a #[cfg(test] flag. Or if you want to have it available for other crates while testing, you may want to create a testing feature. But regular lib users, building regular production code, should not be exposed to this method.
The text was updated successfully, but these errors were encountered:
A lot of other types have a similar method, but are implemented under crates/blockifier/src/test_utils/struct_impls.rs which is behind this flag #[cfg(any(feature = "testing", test))]. That's indeed the correct way to do it
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This is a test-only function. It should be behind a
#[cfg(test]
flag. Or if you want to have it available for other crates while testing, you may want to create atesting
feature. But regular lib users, building regular production code, should not be exposed to this method.The text was updated successfully, but these errors were encountered: