Skip to main content

stop_warp

fn stop_warp(target_contract_address: felt252) -> Result::<(), felt252> nopanic;

Stops a warp started by start_warp.

  • target_contract_address address that was previously warped.
Example
#[test]
fn my_test() {
stop_warp(warped_address).unwrap();
// Block timestamp is no longer warped from here (defaults to 0)
}