@@ -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
@@ -207,14 +215,19 @@ test-suite test
207
215
Test.Pos.Chain.Ssc.Gen
208
216
Test.Pos.Chain.Ssc.Json
209
217
Test.Pos.Chain.Ssc.Arbitrary
218
+ Test.Pos.Chain.Txp.Arbitrary
219
+ Test.Pos.Chain.Txp.Arbitrary.Unsafe
220
+ Test.Pos.Chain.Txp.Bi
210
221
Test.Pos.Chain.Txp.CoreSpec
211
222
Test.Pos.Chain.Txp.Gen
212
223
Test.Pos.Chain.Txp.Json
224
+ Test.Pos.Chain.Txp.Example
213
225
Test.Pos.Chain.Txp.Toil.UtxoSpec
214
226
Test.Pos.Chain.Update.Arbitrary
215
227
Test.Pos.Chain.Update.Arbitrary.Core
216
228
217
229
build-depends : base
230
+ , base16-bytestring
218
231
, bytestring
219
232
, cardano-crypto
220
233
, cardano-sl-binary
@@ -227,6 +240,7 @@ test-suite test
227
240
, cardano-sl-util
228
241
, cardano-sl-util-test
229
242
, containers
243
+ , data-default
230
244
, fmt
231
245
, formatting
232
246
, generic-arbitrary
@@ -242,29 +256,8 @@ test-suite test
242
256
, unordered-containers
243
257
, vector
244
258
default-language : Haskell2010
245
- default-extensions : DeriveDataTypeable
246
- DeriveGeneric
247
- GeneralizedNewtypeDeriving
248
- StandaloneDeriving
249
- FlexibleContexts
250
- FlexibleInstances
251
- MultiParamTypeClasses
252
- FunctionalDependencies
253
- DefaultSignatures
254
- NoImplicitPrelude
259
+ default-extensions : NoImplicitPrelude
255
260
OverloadedStrings
256
- RecordWildCards
257
- TypeApplications
258
- TupleSections
259
- ViewPatterns
260
- LambdaCase
261
- MultiWayIf
262
- ConstraintKinds
263
- UndecidableInstances
264
- BangPatterns
265
- TemplateHaskell
266
- ScopedTypeVariables
267
- MonadFailDesugaring
268
261
269
262
benchmark block-bench
270
263
main-is : block-bench.hs
@@ -277,6 +270,7 @@ benchmark block-bench
277
270
Test.Pos.Chain.Block.Arbitrary.Generate
278
271
Test.Pos.Chain.Delegation.Arbitrary
279
272
Test.Pos.Chain.Ssc.Arbitrary
273
+ Test.Pos.Chain.Txp.Arbitrary
280
274
Test.Pos.Chain.Update.Arbitrary
281
275
Test.Pos.Chain.Update.Arbitrary.Core
282
276
@@ -292,10 +286,14 @@ benchmark block-bench
292
286
, cardano-sl-core-test
293
287
, cardano-sl-crypto-test
294
288
, cardano-sl-util-test
289
+ , data-default
295
290
, deepseq
296
291
, formatting
297
292
, generic-arbitrary
298
293
, random
299
294
, text
300
295
, universum
301
296
, unordered-containers
297
+ , vector
298
+ default-extensions : NoImplicitPrelude
299
+ OverloadedStrings
0 commit comments