-
- All Implemented Interfaces:
public final class Balance
Balance differentiated in various categories.
-
-
Method Summary
Modifier and Type Method Description final ULong
getImmature()
All coinbase outputs not yet matured. final Unit
setImmature(ULong immature)
All coinbase outputs not yet matured. final ULong
getTrustedPending()
Unconfirmed UTXOs generated by a wallet tx. final Unit
setTrustedPending(ULong trustedPending)
Unconfirmed UTXOs generated by a wallet tx. final ULong
getUntrustedPending()
Unconfirmed UTXOs received from an external wallet. final Unit
setUntrustedPending(ULong untrustedPending)
Unconfirmed UTXOs received from an external wallet. final ULong
getConfirmed()
Confirmed and immediately spendable balance. final Unit
setConfirmed(ULong confirmed)
Confirmed and immediately spendable balance. final ULong
getSpendable()
The sum of trustedPending and confirmed coins. final Unit
setSpendable(ULong spendable)
The sum of trustedPending and confirmed coins. final ULong
getTotal()
The whole balance visible to the wallet. final Unit
setTotal(ULong total)
The whole balance visible to the wallet. -
-
Method Detail
-
getImmature
final ULong getImmature()
All coinbase outputs not yet matured.
-
setImmature
final Unit setImmature(ULong immature)
All coinbase outputs not yet matured.
-
getTrustedPending
final ULong getTrustedPending()
Unconfirmed UTXOs generated by a wallet tx.
-
setTrustedPending
final Unit setTrustedPending(ULong trustedPending)
Unconfirmed UTXOs generated by a wallet tx.
-
getUntrustedPending
final ULong getUntrustedPending()
Unconfirmed UTXOs received from an external wallet.
-
setUntrustedPending
final Unit setUntrustedPending(ULong untrustedPending)
Unconfirmed UTXOs received from an external wallet.
-
getConfirmed
final ULong getConfirmed()
Confirmed and immediately spendable balance.
-
setConfirmed
final Unit setConfirmed(ULong confirmed)
Confirmed and immediately spendable balance.
-
getSpendable
final ULong getSpendable()
The sum of trustedPending and confirmed coins.
-
setSpendable
final Unit setSpendable(ULong spendable)
The sum of trustedPending and confirmed coins.
-
-
-
-