Implement simplified CLTV logic: stack value must exactly match an entry in `supported`.
| 206 | |
| 207 | //! Implement simplified CLTV logic: stack value must exactly match an entry in `supported`. |
| 208 | bool CheckAfter(uint32_t value) const { |
| 209 | return supported.contains(Challenge(ChallengeType::AFTER, value)); |
| 210 | } |
| 211 | |
| 212 | //! Implement simplified CSV logic: stack value must exactly match an entry in `supported`. |
| 213 | bool CheckOlder(uint32_t value) const { |