* Returns whether the script is guaranteed to fail at execution, * regardless of the initial stack. This allows outputs to be pruned * instantly when entering the UTXO set. */
| 562 | * instantly when entering the UTXO set. |
| 563 | */ |
| 564 | bool IsUnspendable() const |
| 565 | { |
| 566 | return (size() > 0 && *begin() == OP_RETURN) || (size() > MAX_SCRIPT_SIZE); |
| 567 | } |
| 568 | |
| 569 | void clear() |
| 570 | { |