Test if the script is provably unspendable
(self)
| 758 | return True |
| 759 | |
| 760 | def is_unspendable(self): |
| 761 | """Test if the script is provably unspendable""" |
| 762 | return (len(self) > 0 and |
| 763 | self[0] == OP_RETURN) |
| 764 | |
| 765 | def is_valid(self): |
| 766 | """Return True if the script is valid, False otherwise |