Skip to content

Commit

Permalink
Fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
effectfully committed Oct 17, 2023
1 parent af628e8 commit 943bd22
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -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)
1 change: 0 additions & 1 deletion plutus-ledger-api/plutus-ledger-api.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion plutus-tx/src/PlutusTx/List.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 943bd22

Please sign in to comment.