Skip to content

Commit d655cf5

Browse files
committed
WIP
1 parent 05d9d4e commit d655cf5

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

cabal.project

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repository cardano-haskell-packages
1414
-- update either of these.
1515
index-state:
1616
-- Bump this if you need newer packages from Hackage
17-
, hackage.haskell.org 2025-01-14T03:16:27Z
17+
, hackage.haskell.org 2025-03-18T17:41:11Z
1818
-- Bump this if you need newer packages from CHaP
1919
, cardano-haskell-packages 2025-03-25T12:18:59Z
2020

@@ -75,3 +75,5 @@ if impl (ghc >= 9.12)
7575
, ouroboros-network-api:base
7676
, network-mux:base
7777
, ouroboros-network:base
78+
79+
, with-utf8:base

ouroboros-consensus-cardano/src/byron/Ouroboros/Consensus/Byron/ByronHFC.hs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,6 @@ instance SerialiseNodeToClient ByronBlock ByronPartialLedgerConfig where
280280
<$> fromCBOR @(LedgerConfig ByronBlock)
281281
<*> decodeNodeToClient ccfg version
282282

283-
284-
285283
{-------------------------------------------------------------------------------
286284
Canonical TxIn
287285
-------------------------------------------------------------------------------}
@@ -300,10 +298,10 @@ instance HasCanonicalTxIn '[ByronBlock] where
300298

301299
instance HasHardForkTxOut '[ByronBlock] where
302300
type instance HardForkTxOut '[ByronBlock] = Void
303-
injectHardForkTxOut IZ txout = absurd txout
304-
injectHardForkTxOut (IS idx') _ = case idx' of {}
305-
ejectHardForkTxOut IZ txout = absurd txout
306-
ejectHardForkTxOut (IS idx') _ = case idx' of {}
301+
injectHardForkTxOut IZ txout = absurd txout
302+
injectHardForkTxOut (IS idx') _ = case idx' of {}
303+
ejectHardForkTxOut IZ txout = absurd txout
304+
ejectHardForkTxOut (IS idx') _ = case idx' of {}
307305

308306
deriving via Void
309307
instance IndexedMemPack (LedgerState (HardForkBlock '[ByronBlock]) EmptyMK) Void

ouroboros-consensus-cardano/src/shelley/Ouroboros/Consensus/Shelley/Eras.hs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,6 @@ class ( Core.EraSegWits era
152152

153153
, ToCBOR (Core.TranslationContext era)
154154
, FromCBOR (Core.TranslationContext era)
155-
, DecCBOR SL.TxIn
156-
, EncCBOR SL.TxIn
157-
158155
) => ShelleyBasedEra era where
159156

160157
applyShelleyBasedTx ::

sop-extras/changelog.d/utxo-hd.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
### Breaking
22

33
- Delete the `K2` combinator.
4-
- Define `Fn2`.
4+
- Define `Fn2` and add `composeFromTo`.
5+
- Define `telescopeMismatch`.
6+
- Define `inPairsToTails` and `extendWithTails`.

0 commit comments

Comments
 (0)