| 458 | //! Time lock satisfactions. |
| 459 | bool CheckAfter(uint32_t value) const { return m_creator.Checker().CheckLockTime(CScriptNum(value)); } |
| 460 | bool CheckOlder(uint32_t value) const { return m_creator.Checker().CheckSequence(CScriptNum(value)); } |
| 461 | |
| 462 | //! Hash preimage satisfactions. |
| 463 | miniscript::Availability SatSHA256(const std::vector<unsigned char>& hash, std::vector<unsigned char>& preimage) const { |
no test coverage detected