Conversion to raw public key.
| 454 | |
| 455 | //! Conversion to raw public key. |
| 456 | std::vector<unsigned char> ToPKBytes(const Key& key) const { return {key.begin(), key.end()}; } |
| 457 | |
| 458 | //! Time lock satisfactions. |
| 459 | bool CheckAfter(uint32_t value) const { return m_creator.Checker().CheckLockTime(CScriptNum(value)); } |
no test coverage detected