Add Lazy
and use it throughout Plutus Tx code instead of the slower ()
#6060
Labels
Lazy
and use it throughout Plutus Tx code instead of the slower ()
#6060
We should have some kind of
Lazy
data type instead of using() ->
in Plutus Tx, so that we can compile it todelay
andforce
instead of juggling the slower units.This applied to builtins too, i.e.
ifThenElse
,chooseList
,chooseData
and whatever else builtins we have shouldn't be instantiated with() ->
, it should beLazy
in there.The text was updated successfully, but these errors were encountered: