@@ -19,6 +19,7 @@ library
1919 Cardano.Wallet.API.Indices
2020 Cardano.Wallet.API.Internal
2121 Cardano.Wallet.API.Internal.Handlers
22+ Cardano.Wallet.API.Internal.LegacyHandlers
2223 Cardano.Wallet.API.Request
2324 Cardano.Wallet.API.Request.Filter
2425 Cardano.Wallet.API.Request.Pagination
@@ -97,6 +98,7 @@ library
9798 Cardano.Wallet.Kernel.DB.Sqlite
9899 Cardano.Wallet.Kernel.DB.TxMeta
99100 Cardano.Wallet.Kernel.DB.TxMeta.Types
101+ Cardano.Wallet.Kernel.DB.Updates
100102 Cardano.Wallet.Kernel.DB.Util.AcidState
101103 Cardano.Wallet.Kernel.DB.Util.IxSet
102104 Cardano.Wallet.Kernel.Diffusion
@@ -114,6 +116,8 @@ library
114116 Cardano.Wallet.Kernel.Types
115117 Cardano.Wallet.Kernel.Util
116118 Cardano.Wallet.Kernel.Util.Core
119+ Cardano.Wallet.Kernel.Util.StrictList
120+ Cardano.Wallet.Kernel.Util.StrictNonEmpty
117121 Cardano.Wallet.Kernel.Util.StrictStateT
118122 Cardano.Wallet.Kernel.Wallets
119123 Cardano.Wallet.LegacyServer
@@ -137,11 +141,11 @@ library
137141 Cardano.Wallet.WalletLayer.Kernel.Addresses
138142 Cardano.Wallet.WalletLayer.Kernel.Conv
139143 Cardano.Wallet.WalletLayer.Kernel.Info
144+ Cardano.Wallet.WalletLayer.Kernel.Internal
140145 Cardano.Wallet.WalletLayer.Kernel.Settings
141146 Cardano.Wallet.WalletLayer.Kernel.Transactions
142147 Cardano.Wallet.WalletLayer.Kernel.Wallets
143148 Cardano.Wallet.WalletLayer.Kernel
144- Cardano.Wallet.WalletLayer.Error
145149
146150 other-modules : Paths_cardano_sl_wallet_new
147151 ghc-options : -Wall
@@ -172,13 +176,15 @@ library
172176 , cardano-sl-util
173177 , cardano-sl-wallet
174178 , cardano-sl-wallet-test
179+ , cereal
175180 , conduit
176181 , connection
177182 , containers
178183 , cryptonite
179184 , data-default
180185 , data-default-class
181186 , directory
187+ , ed25519
182188 , exceptions
183189 , formatting
184190 , formatting
@@ -390,7 +396,7 @@ executable wal-integr-test
390396 MonadFailDesugaring
391397
392398test-suite wallet-unit-tests
393- ghc-options : -Wall
399+ ghc-options : -Wall -O2
394400 type : exitcode-stdio-1.0
395401 main-is : WalletUnitTest.hs
396402 other-modules : InputSelection.Evaluation
@@ -523,7 +529,7 @@ test-suite wallet-unit-tests
523529 , time
524530
525531test-suite wallet-new-specs
526- ghc-options : -Wall
532+ ghc-options : -Wall -O2 -threaded -rtsopts
527533 type : exitcode-stdio-1.0
528534 main-is : Spec.hs
529535 hs-source-dirs : test test/unit
@@ -567,17 +573,20 @@ test-suite wallet-new-specs
567573 build-depends : base
568574 , aeson
569575 , bytestring
576+ , cardano-crypto
570577 , cardano-sl
571578 , cardano-sl-binary-test
572579 , cardano-sl-client
573580 , cardano-sl-client
581+ , cardano-sl-chain-test
574582 , cardano-sl-core
575583 , cardano-sl-core-test
576584 , cardano-sl-crypto
577585 , cardano-sl-chain
578586 , cardano-sl-util-test
579587 , cardano-sl-wallet
580588 , cardano-sl-wallet-new
589+ , cereal
581590 , data-default
582591 , directory
583592 , directory
@@ -587,6 +596,7 @@ test-suite wallet-new-specs
587596 , lens
588597 , QuickCheck
589598 , quickcheck-instances
599+ , safecopy
590600 , safe-exceptions
591601 , servant
592602 , servant-server
0 commit comments