Bugfix: Move IsStandard scriptSig size check out of IsPushOnly, since BIP16 verificat...
[novacoin.git] / src / script.h
index 502bce1..8dddb89 100644 (file)
@@ -623,8 +623,6 @@ public:
 
     bool IsPushOnly() const
     {
-        if (size() > 200)
-            return false;
         const_iterator pc = begin();
         while (pc < end())
         {