InsufficientFunds

data class InsufficientFunds(val required: BigInteger, val available: BigInteger, val shortfall: BigInteger) : UtxoSelector.SelectionResult

Selection failed - insufficient funds.

Constructors

Link copied to clipboard
constructor(required: BigInteger, available: BigInteger, shortfall: BigInteger)

Properties

Link copied to clipboard

Amount available

Link copied to clipboard

Amount required

Link copied to clipboard

How much more is needed (required - available)