| 205 | } |
| 206 | |
| 207 | bool CScript::IsPayToAnchor() const |
| 208 | { |
| 209 | return (this->size() == 4 && |
| 210 | (*this)[0] == OP_1 && |
| 211 | (*this)[1] == 0x02 && |
| 212 | (*this)[2] == 0x4e && |
| 213 | (*this)[3] == 0x73); |
| 214 | } |
| 215 | |
| 216 | bool CScript::IsPayToAnchor(int version, const std::vector<unsigned char>& program) |
| 217 | { |