aboutsummaryrefslogtreecommitdiff
path: root/src/script.h
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2013-09-23 14:23:14 -0700
committerGavin Andresen <[email protected]>2013-09-23 14:23:14 -0700
commitfb8724ee6caa0e55bba9849d9a672b5467bcbc0f (patch)
tree54a8eccef31de48f8d715bc8729b86d5888f2dce /src/script.h
parentMerge pull request #3016 from sipa/lows (diff)
parentPrune provably-unspendable outputs (diff)
downloaddiscoin-fb8724ee6caa0e55bba9849d9a672b5467bcbc0f.tar.xz
discoin-fb8724ee6caa0e55bba9849d9a672b5467bcbc0f.zip
Merge pull request #2791 from sipa/proveprune
Prune provably-unspendable outputs
Diffstat (limited to 'src/script.h')
-rw-r--r--src/script.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/script.h b/src/script.h
index f5ed61154..842b8512e 100644
--- a/src/script.h
+++ b/src/script.h
@@ -553,6 +553,13 @@ public:
return true;
}
+ // 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.
+ bool IsUnspendable() const
+ {
+ return (size() > 0 && *begin() == OP_RETURN);
+ }
void SetDestination(const CTxDestination& address);
void SetMultisig(int nRequired, const std::vector<CPubKey>& keys);