Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Coin Selection Split Fee Module #174

Merged
merged 2 commits into from
Apr 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions cardano-wallet.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@ library
Cardano.Wallet.Binary
Cardano.Wallet.Binary.Packfile
Cardano.Wallet.CoinSelection
Cardano.Wallet.CoinSelection.LargestFirst
Cardano.Wallet.CoinSelection.Random
Cardano.Wallet.CoinSelection.Fee
Cardano.Wallet.CoinSelection.Policy.LargestFirst
Cardano.Wallet.CoinSelection.Policy.Random
Cardano.Wallet.DB
Cardano.Wallet.DB.MVar
Cardano.Wallet.Network
Expand All @@ -81,8 +82,8 @@ library
Cardano.Wallet.Primitive.Mnemonic
Cardano.Wallet.Primitive.Model
Cardano.Wallet.Primitive.Types
Data.Text.Class
Data.Quantity
Data.Text.Class
Servant.Extra.ContentTypes
other-modules:
Paths_cardano_wallet
Expand Down Expand Up @@ -144,24 +145,25 @@ test-suite unit
Cardano.CLISpec
Cardano.Launcher
Cardano.LauncherSpec
Cardano.WalletSpec
Cardano.Wallet.ApiSpec
Cardano.Wallet.Api.TypesSpec
Cardano.Wallet.BinarySpec
Cardano.Wallet.ApiSpec
Cardano.Wallet.Binary.PackfileSpec
Cardano.Wallet.BinarySpec
Cardano.Wallet.CoinSelection.FeeSpec
Cardano.Wallet.CoinSelection.Policy.LargestFirstSpec
Cardano.Wallet.CoinSelection.Policy.RandomSpec
Cardano.Wallet.CoinSelectionSpec
Cardano.Wallet.CoinSelection.LargestFirstSpec
Cardano.Wallet.CoinSelection.RandomSpec
Cardano.Wallet.DBSpec
Cardano.Wallet.DB.MVarSpec
Cardano.Wallet.NetworkSpec
Cardano.Wallet.Network.HttpBridgeSpec
Cardano.Wallet.DBSpec
Cardano.Wallet.Network.HttpBridge.ApiSpec
Cardano.Wallet.Network.HttpBridgeSpec
Cardano.Wallet.NetworkSpec
Cardano.Wallet.Primitive.AddressDerivationSpec
Cardano.Wallet.Primitive.AddressDiscoverySpec
Cardano.Wallet.Primitive.MnemonicSpec
Cardano.Wallet.Primitive.ModelSpec
Cardano.Wallet.Primitive.TypesSpec
Cardano.WalletSpec
Data.Text.ClassSpec
Data.QuantitySpec
Servant.Extra.ContentTypesSpec
Expand Down
2 changes: 1 addition & 1 deletion src/Cardano/Wallet.hs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ import Fmt
import GHC.Generics
( Generic )

import qualified Cardano.Wallet.CoinSelection.Random as CoinSelection
import qualified Cardano.Wallet.CoinSelection.Policy.Random as CoinSelection
import qualified Cardano.Wallet.DB as DB
import qualified Data.Text.IO as TIO

Expand Down
Loading