SelectionResult

sealed class SelectionResult

Result of UTXO selection.

Inheritors

Types

Link copied to clipboard
data class InsufficientFunds(val required: BigInteger, val available: BigInteger, val shortfall: BigInteger) : UtxoSelector.SelectionResult

Selection failed - insufficient funds.

Link copied to clipboard
data class Success(val selectedUtxos: List<UnshieldedUtxoEntity>, val totalSelected: BigInteger, val change: BigInteger) : UtxoSelector.SelectionResult

Selection successful - found enough UTXOs.