()
| 636 | } |
| 637 | |
| 638 | func (s *Script) IsPayToScriptHash() bool { |
| 639 | size := len(s.data) |
| 640 | return size == 23 && |
| 641 | s.data[0] == opcodes.OP_HASH160 && |
| 642 | s.data[1] == 0x14 && |
| 643 | s.data[22] == opcodes.OP_EQUAL |
| 644 | } |
| 645 | |
| 646 | func (s *Script) IsUnspendable() bool { |
| 647 | return (s.Size() > 0 && s.data[0] == opcodes.OP_RETURN) || s.Size() > MaxScriptSize |
no outgoing calls
no test coverage detected