Treat overly long scriptPubKeys as unspendable

pull/7933/head
Pieter Wuille 9 years ago
parent f8e6fb1800
commit 4f87af6fc7

@ -624,7 +624,7 @@ public:
*/ */
bool IsUnspendable() const bool IsUnspendable() const
{ {
return (size() > 0 && *begin() == OP_RETURN); return (size() > 0 && *begin() == OP_RETURN) || (size() > MAX_SCRIPT_SIZE);
} }
void clear() void clear()

Loading…
Cancel
Save