DustSpendError

Types

Link copied to clipboard
data class BackingNightNotFound(val dustToken: DustToken) : DustSpendError

The backing Night UTXO for this dust token was not found.

Link copied to clipboard
data class DustTokenPending(val dustToken: DustToken, val availableAt: Long) : DustSpendError

The dust token is still pending and can't be spent yet.

Link copied to clipboard
data class DustUtxoNotTracked(val dustToken: DustToken) : DustSpendError

The dust UTXO is not tracked in the wallet state.

Link copied to clipboard
data class MerkleTreeNotRehashed(val treeName: String) : DustSpendError

A Merkle tree is not fully rehashed and can't be used.

Link copied to clipboard
data class NotEnoughDust(val available: BigInteger, val required: BigInteger) : DustSpendError

Not enough dust available to pay the fee.

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?