You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PlutusTx.Ord.Ord lacks a MINIMAL pragma meaning it's easy to cause an infinite loop by defining an instance of this class. We should simply take the pragma from base (where that code is stolen from):
{-# MINIMAL compare | (<=) #-}
and check existence of MINIMAL pragmas for all the other type classes where such a pragma applies.
The text was updated successfully, but these errors were encountered:
PlutusTx.Ord.Ord
lacks aMINIMAL
pragma meaning it's easy to cause an infinite loop by defining an instance of this class. We should simply take the pragma frombase
(where that code is stolen from):{-# MINIMAL compare | (<=) #-}
and check existence of
MINIMAL
pragmas for all the other type classes where such a pragma applies.The text was updated successfully, but these errors were encountered: