File tree 3 files changed +4
-11
lines changed
ouroboros-consensus/src/unstable-mock-block/Ouroboros/Consensus/Mock/Protocol
ouroboros-consensus-diffusion/changelog.d
3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ packages:
26
26
sop-extras
27
27
strict-sop-core
28
28
29
+ allow-newer : plutus-core :cardano-crypto-class
30
+
29
31
-- We want to always build the test-suites and benchmarks
30
32
tests : true
31
33
benchmarks : true
@@ -45,14 +47,6 @@ if(os(windows))
45
47
constraints :
46
48
bitvec -simd
47
49
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
-
56
50
source-repository-package
57
51
type : git
58
52
location : https://github.com/input-output-hk/cardano-ledger
Original file line number Diff line number Diff line change 1
1
### Non-Breaking
2
2
3
3
- 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 ` .
Original file line number Diff line number Diff line change @@ -207,7 +207,8 @@ data HotKey c =
207
207
| HotKeyPoisoned
208
208
deriving (Generic )
209
209
210
- instance PraosCrypto c => NoThunks (HotKey c )
210
+ instance (PraosCrypto c , NoThunks (UnsoundPureSignKeyKES (PraosKES c ))) => NoThunks (HotKey c )
211
+
211
212
instance PraosCrypto c => Show (HotKey c ) where
212
213
show (HotKey p _) = " HotKey " ++ show p ++ " <SignKeyKES: hidden>"
213
214
show HotKeyPoisoned = " HotKeyPoisoned"
You can’t perform that action at this time.
0 commit comments