* 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. */
| 619 | * instantly when entering the UTXO set. |
| 620 | */ |
| 621 | bool IsUnspendable() const |
| 622 | { |
| 623 | return (size() > 0 && *begin() == OP_RETURN); |
| 624 | } |
| 625 | |
| 626 | void clear() |
| 627 | { |
no outgoing calls
no test coverage detected