| 92 | uint256 CAlert::GetHash() const { return Hash(this->vchMsg.begin(), this->vchMsg.end()); } |
| 93 | |
| 94 | bool CAlert::IsInEffect() const { return (GetAdjustedTime() < nExpiration); } |
| 95 | |
| 96 | bool CAlert::Cancels(const CAlert& alert) const { |
| 97 | if (!IsInEffect()) |
no test coverage detected