@@ -19,6 +19,7 @@ library
19
19
Cardano.Wallet.API.Indices
20
20
Cardano.Wallet.API.Internal
21
21
Cardano.Wallet.API.Internal.Handlers
22
+ Cardano.Wallet.API.Internal.LegacyHandlers
22
23
Cardano.Wallet.API.Request
23
24
Cardano.Wallet.API.Request.Filter
24
25
Cardano.Wallet.API.Request.Pagination
@@ -97,6 +98,7 @@ library
97
98
Cardano.Wallet.Kernel.DB.Sqlite
98
99
Cardano.Wallet.Kernel.DB.TxMeta
99
100
Cardano.Wallet.Kernel.DB.TxMeta.Types
101
+ Cardano.Wallet.Kernel.DB.Updates
100
102
Cardano.Wallet.Kernel.DB.Util.AcidState
101
103
Cardano.Wallet.Kernel.DB.Util.IxSet
102
104
Cardano.Wallet.Kernel.Diffusion
@@ -114,6 +116,8 @@ library
114
116
Cardano.Wallet.Kernel.Types
115
117
Cardano.Wallet.Kernel.Util
116
118
Cardano.Wallet.Kernel.Util.Core
119
+ Cardano.Wallet.Kernel.Util.StrictList
120
+ Cardano.Wallet.Kernel.Util.StrictNonEmpty
117
121
Cardano.Wallet.Kernel.Util.StrictStateT
118
122
Cardano.Wallet.Kernel.Wallets
119
123
Cardano.Wallet.LegacyServer
@@ -137,11 +141,11 @@ library
137
141
Cardano.Wallet.WalletLayer.Kernel.Addresses
138
142
Cardano.Wallet.WalletLayer.Kernel.Conv
139
143
Cardano.Wallet.WalletLayer.Kernel.Info
144
+ Cardano.Wallet.WalletLayer.Kernel.Internal
140
145
Cardano.Wallet.WalletLayer.Kernel.Settings
141
146
Cardano.Wallet.WalletLayer.Kernel.Transactions
142
147
Cardano.Wallet.WalletLayer.Kernel.Wallets
143
148
Cardano.Wallet.WalletLayer.Kernel
144
- Cardano.Wallet.WalletLayer.Error
145
149
146
150
other-modules : Paths_cardano_sl_wallet_new
147
151
ghc-options : -Wall
@@ -172,13 +176,15 @@ library
172
176
, cardano-sl-util
173
177
, cardano-sl-wallet
174
178
, cardano-sl-wallet-test
179
+ , cereal
175
180
, conduit
176
181
, connection
177
182
, containers
178
183
, cryptonite
179
184
, data-default
180
185
, data-default-class
181
186
, directory
187
+ , ed25519
182
188
, exceptions
183
189
, formatting
184
190
, formatting
@@ -390,7 +396,7 @@ executable wal-integr-test
390
396
MonadFailDesugaring
391
397
392
398
test-suite wallet-unit-tests
393
- ghc-options : -Wall
399
+ ghc-options : -Wall -O2
394
400
type : exitcode-stdio-1.0
395
401
main-is : WalletUnitTest.hs
396
402
other-modules : InputSelection.Evaluation
@@ -523,7 +529,7 @@ test-suite wallet-unit-tests
523
529
, time
524
530
525
531
test-suite wallet-new-specs
526
- ghc-options : -Wall
532
+ ghc-options : -Wall -O2 -threaded -rtsopts
527
533
type : exitcode-stdio-1.0
528
534
main-is : Spec.hs
529
535
hs-source-dirs : test test/unit
@@ -567,17 +573,20 @@ test-suite wallet-new-specs
567
573
build-depends : base
568
574
, aeson
569
575
, bytestring
576
+ , cardano-crypto
570
577
, cardano-sl
571
578
, cardano-sl-binary-test
572
579
, cardano-sl-client
573
580
, cardano-sl-client
581
+ , cardano-sl-chain-test
574
582
, cardano-sl-core
575
583
, cardano-sl-core-test
576
584
, cardano-sl-crypto
577
585
, cardano-sl-chain
578
586
, cardano-sl-util-test
579
587
, cardano-sl-wallet
580
588
, cardano-sl-wallet-new
589
+ , cereal
581
590
, data-default
582
591
, directory
583
592
, directory
@@ -587,6 +596,7 @@ test-suite wallet-new-specs
587
596
, lens
588
597
, QuickCheck
589
598
, quickcheck-instances
599
+ , safecopy
590
600
, safe-exceptions
591
601
, servant
592
602
, servant-server
0 commit comments