From 943bd227a20a75e2d29c7be5b3223e46a8968787 Mon Sep 17 00:00:00 2001 From: effectfully Date: Wed, 18 Oct 2023 01:47:45 +0200 Subject: [PATCH] Fixups --- ...53352_effectfully_experiment_with_MatchUnclear_and_tildas.md | 2 +- plutus-ledger-api/plutus-ledger-api.cabal | 1 - plutus-tx/src/PlutusTx/List.hs | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/plutus-ledger-api/changelog.d/20231010_053352_effectfully_experiment_with_MatchUnclear_and_tildas.md b/plutus-ledger-api/changelog.d/20231010_053352_effectfully_experiment_with_MatchUnclear_and_tildas.md index 593bc8c9328..a87faf7ba8d 100644 --- a/plutus-ledger-api/changelog.d/20231010_053352_effectfully_experiment_with_MatchUnclear_and_tildas.md +++ b/plutus-ledger-api/changelog.d/20231010_053352_effectfully_experiment_with_MatchUnclear_and_tildas.md @@ -1,3 +1,3 @@ ### Changed -- Optimized equality checking of `Value`s in [#5577](https://github.com/input-output-hk/plutus/pull/5577) +- Optimized equality checking of `Value`s in [#5593](https://github.com/input-output-hk/plutus/pull/5593) diff --git a/plutus-ledger-api/plutus-ledger-api.cabal b/plutus-ledger-api/plutus-ledger-api.cabal index c61e6d4f501..40f4cfd355a 100644 --- a/plutus-ledger-api/plutus-ledger-api.cabal +++ b/plutus-ledger-api/plutus-ledger-api.cabal @@ -187,7 +187,6 @@ test-suite plutus-ledger-api-plugin-test , plutus-tx ^>=1.15 , plutus-tx-plugin ^>=1.15 , prettyprinter - , QuickCheck , tasty -- This is a nightly test, so it is an executable instead of test-suite to avoid diff --git a/plutus-tx/src/PlutusTx/List.hs b/plutus-tx/src/PlutusTx/List.hs index 7927b1f2a65..ac165980d68 100644 --- a/plutus-tx/src/PlutusTx/List.hs +++ b/plutus-tx/src/PlutusTx/List.hs @@ -108,7 +108,7 @@ any f = go x : xs -> if f x then True else go xs -- The pragma improves some of the budget tests. -{-# INLINE all #-} +{-# INLINABLE all #-} -- | Determines whether all elements of the list satisfy the predicate. all :: forall a. (a -> Bool) -> [a] -> Bool all f = go