We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97a0980 commit 28b57e0Copy full SHA for 28b57e0
libs/cardano-ledger-core/CHANGELOG.md
@@ -2,6 +2,7 @@
2
3
## 1.19.0.0
4
5
+* Remove `Generic` instance from `BoundedRatio` type
6
* Remove deprecated function `addrPtrNormalize`
7
* Remove deprecated functions `mkTxIx`, `mkCertIx`, `hashAnchorData`
8
* Remove deprecated functions `bheader`, `bbody`
libs/cardano-ledger-core/src/Cardano/Ledger/BaseTypes.hs
@@ -258,7 +258,7 @@ integralToBounded i
258
-- interval that is controlled by phantom type variable @b@ as well as by
259
-- the bounds of underlying type @a@.
260
newtype BoundedRatio b a = BoundedRatio (Ratio a)
261
- deriving (Eq, Generic)
+ deriving (Eq)
262
deriving newtype (Show, NoThunks, NFData)
263
264
-- Deriving Ord instance can lead to integer overflow. We must go through Rational.
0 commit comments