stop_roll
fn stop_roll(target_contract_address: felt252) -> Result::<(), felt252> nopanic;
Stops a roll started by start_roll.
target_contract_addressaddress that was previously rolled.
Example
#[test]
fn my_test() {
stop_roll(rolled_address).unwrap();
// Block number is no longer rolled from here (defaults to -1)
}