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
Currently, the Rust output format is intended to be copy-pasted into a #[test] function in other codebases. That was fine for small test vectors, but we have much larger ones now, and so it makes more sense to have the output be a valid standalone Rust file.
We should use the following format style:
pub(crate)structTestVector{pub(crate)NAME:TYPE,
...,}// From https://github.com/zcash-hackworks/zcash-test-vectors/...pub(crate)constTEST_VECTORS:&[TestVector] = &[TestVector{NAME:VALUE,
...,},];
The text was updated successfully, but these errors were encountered:
Currently, the Rust output format is intended to be copy-pasted into a
#[test]
function in other codebases. That was fine for small test vectors, but we have much larger ones now, and so it makes more sense to have the output be a valid standalone Rust file.We should use the following format style:
The text was updated successfully, but these errors were encountered: