Skip to main content

hopper_runtime/
result.rs

1//! Canonical result type for Hopper programs.
2
3use crate::ProgramError;
4
5/// Result type returned by all Hopper instruction handlers.
6pub type ProgramResult = Result<(), ProgramError>;