pub trait Processing {
    // Required methods
    fn on_start(&self) -> DispatchResult;
    fn on_finish(&self, success: bool) -> DispatchResult;
}Expand description
Transaction processing of agreement. Usually it consists of balance locking and transfers when liability successfully finished.