Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the minimum number of inputs returned from
selectCoins
.
Update the minimum number of inputs from `0` to `1`. The corresponding `ApiCoinSelection` type specifies a `NonEmpty` list of `ApiCoinSelectionInput` values: ``` data ApiCoinSelection (n :: NetworkDiscriminant) = ApiCoinSelection { inputs :: !(NonEmpty (ApiCoinSelectionInput n)) , outputs :: ![ApiCoinSelectionOutput n] , change :: ![ApiCoinSelectionChange n] , certificates :: Maybe (NonEmpty ApiCertificate) } deriving (Eq, Generic, Show) ```
- Loading branch information