Skip to content

Commit a2dd9f6

Browse files
committed
Address more review comments
1 parent 452d5e1 commit a2dd9f6

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

cabal.project

+2-8
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ packages:
2626
sop-extras
2727
strict-sop-core
2828

29+
allow-newer: plutus-core:cardano-crypto-class
30+
2931
-- We want to always build the test-suites and benchmarks
3032
tests: true
3133
benchmarks: true
@@ -45,14 +47,6 @@ if(os(windows))
4547
constraints:
4648
bitvec -simd
4749

48-
source-repository-package
49-
type: git
50-
location: https://github.com/input-output-hk/cardano-base
51-
tag: b2cec3fbcde4bacb9c961e5510d5a1d3754c4e2b
52-
--sha256: sha256-TDEBINZ3SkhpRNomMdt53bR3gdzgkWR9jIlAr8yrU6o=
53-
subdir:
54-
cardano-crypto-class
55-
5650
source-repository-package
5751
type: git
5852
location: https://github.com/input-output-hk/cardano-ledger
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
### Non-Breaking
22

33
- Use registry to ensure block forging threads are finalized in node kernel.
4-
- Tests have been adapted to match the API changes in
5-
`ouroboros-consensus` and `ouroboros-consensus-cardano`.

ouroboros-consensus/src/unstable-mock-block/Ouroboros/Consensus/Mock/Protocol/Praos.hs

+2-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,8 @@ data HotKey c =
207207
| HotKeyPoisoned
208208
deriving (Generic)
209209

210-
instance PraosCrypto c => NoThunks (HotKey c)
210+
instance (PraosCrypto c, NoThunks (UnsoundPureSignKeyKES (PraosKES c))) => NoThunks (HotKey c)
211+
211212
instance PraosCrypto c => Show (HotKey c) where
212213
show (HotKey p _) = "HotKey " ++ show p ++ " <SignKeyKES: hidden>"
213214
show HotKeyPoisoned = "HotKeyPoisoned"

0 commit comments

Comments
 (0)