chia_sdk_driver/primitives/mips/memo/
parsed_restriction.rs

1use chia_sdk_types::puzzles::{
2    EnforceDelegatedPuzzleWrappers, Force1of2RestrictedVariable, Timelock,
3};
4use clvmr::NodePtr;
5
6#[derive(Debug, Clone, PartialEq, Eq)]
7pub enum ParsedRestriction {
8    Force1of2RestrictedVariable(Force1of2RestrictedVariable),
9    EnforceDelegatedPuzzleWrappers(EnforceDelegatedPuzzleWrappers, Vec<NodePtr>),
10    Timelock(Timelock),
11}