blockifier_test_utils 0.18.0-rc.0

Test utilities for the blockifier.
Documentation
1
2
3
4
5
/// Conversion from usize to u64. May fail on architectures with over 64 bits
/// of address space.
pub fn u64_from_usize(val: usize) -> u64 {
    val.try_into().expect("Conversion from usize to u64 should not fail.")
}