@@ -70,6 +70,14 @@ library
70
70
Pos.Chain.Txp.Toil.Utxo
71
71
Pos.Chain.Txp.Toil.Utxo.Functions
72
72
Pos.Chain.Txp.Toil.Utxo.Util
73
+ Pos.Chain.Txp.Tx
74
+ Pos.Chain.Txp.TxAux
75
+ Pos.Chain.Txp.TxMsg
76
+ Pos.Chain.Txp.TxOutAux
77
+ Pos.Chain.Txp.TxPayload
78
+ Pos.Chain.Txp.TxProof
79
+ Pos.Chain.Txp.TxWitness
80
+ Pos.Chain.Txp.Undo
73
81
74
82
Pos.Chain.Lrc.Fts
75
83
Pos.Chain.Lrc.Types
@@ -205,14 +213,19 @@ test-suite test
205
213
Test.Pos.Chain.Ssc.Gen
206
214
Test.Pos.Chain.Ssc.Json
207
215
Test.Pos.Chain.Ssc.Arbitrary
216
+ Test.Pos.Chain.Txp.Arbitrary
217
+ Test.Pos.Chain.Txp.Arbitrary.Unsafe
218
+ Test.Pos.Chain.Txp.Bi
208
219
Test.Pos.Chain.Txp.CoreSpec
209
220
Test.Pos.Chain.Txp.Gen
210
221
Test.Pos.Chain.Txp.Json
222
+ Test.Pos.Chain.Txp.Example
211
223
Test.Pos.Chain.Txp.Toil.UtxoSpec
212
224
Test.Pos.Chain.Update.Arbitrary
213
225
Test.Pos.Chain.Update.Arbitrary.Core
214
226
215
227
build-depends : base
228
+ , base16-bytestring
216
229
, bytestring
217
230
, cardano-crypto
218
231
, cardano-sl-binary
@@ -225,6 +238,7 @@ test-suite test
225
238
, cardano-sl-util
226
239
, cardano-sl-util-test
227
240
, containers
241
+ , data-default
228
242
, fmt
229
243
, formatting
230
244
, generic-arbitrary
@@ -240,28 +254,8 @@ test-suite test
240
254
, unordered-containers
241
255
, vector
242
256
default-language : Haskell2010
243
- default-extensions : DeriveDataTypeable
244
- DeriveGeneric
245
- GeneralizedNewtypeDeriving
246
- StandaloneDeriving
247
- FlexibleContexts
248
- FlexibleInstances
249
- MultiParamTypeClasses
250
- FunctionalDependencies
251
- DefaultSignatures
252
- NoImplicitPrelude
257
+ default-extensions : NoImplicitPrelude
253
258
OverloadedStrings
254
- TypeApplications
255
- TupleSections
256
- ViewPatterns
257
- LambdaCase
258
- MultiWayIf
259
- ConstraintKinds
260
- UndecidableInstances
261
- BangPatterns
262
- TemplateHaskell
263
- ScopedTypeVariables
264
- MonadFailDesugaring
265
259
266
260
ghc-options : -Wall
267
261
@@ -276,6 +270,7 @@ benchmark block-bench
276
270
Test.Pos.Chain.Block.Arbitrary.Generate
277
271
Test.Pos.Chain.Delegation.Arbitrary
278
272
Test.Pos.Chain.Ssc.Arbitrary
273
+ Test.Pos.Chain.Txp.Arbitrary
279
274
Test.Pos.Chain.Update.Arbitrary
280
275
Test.Pos.Chain.Update.Arbitrary.Core
281
276
@@ -291,12 +286,14 @@ benchmark block-bench
291
286
, cardano-sl-core-test
292
287
, cardano-sl-crypto-test
293
288
, cardano-sl-util-test
289
+ , data-default
294
290
, deepseq
295
291
, formatting
296
292
, generic-arbitrary
297
293
, random
298
294
, text
299
295
, universum
300
296
, unordered-containers
301
-
297
+ , vector
302
298
default-extensions : NoImplicitPrelude
299
+ OverloadedStrings
0 commit comments