Package org.bitcoindevkit
Class LocalOutput
-
- All Implemented Interfaces:
-
org.bitcoindevkit.Disposable
public final class LocalOutput implements Disposable
An unspent output owned by a `Wallet`.
-
-
Field Summary
Fields Modifier and Type Field Description private OutPoint
outpoint
private TxOut
txout
private KeychainKind
keychain
private Boolean
isSpent
private UInt
derivationIndex
private ChainPosition
chainPosition
-
Constructor Summary
Constructors Constructor Description LocalOutput(OutPoint outpoint, TxOut txout, KeychainKind keychain, Boolean isSpent, UInt derivationIndex, ChainPosition chainPosition)
-
Method Summary
Modifier and Type Method Description final OutPoint
getOutpoint()
Reference to a transaction output final Unit
setOutpoint(OutPoint outpoint)
Reference to a transaction output final TxOut
getTxout()
Transaction output final Unit
setTxout(TxOut txout)
Transaction output final KeychainKind
getKeychain()
Type of keychain final Unit
setKeychain(KeychainKind keychain)
Type of keychain final Boolean
isSpent()
Whether this UTXO is spent or not final Unit
setSpent(Boolean isSpent)
Whether this UTXO is spent or not final UInt
getDerivationIndex()
The derivation index for the script pubkey in the wallet final Unit
setDerivationIndex(UInt derivationIndex)
The derivation index for the script pubkey in the wallet final ChainPosition
getChainPosition()
The position of the output in the blockchain. final Unit
setChainPosition(ChainPosition chainPosition)
The position of the output in the blockchain. Unit
destroy()
-
-
Constructor Detail
-
LocalOutput
LocalOutput(OutPoint outpoint, TxOut txout, KeychainKind keychain, Boolean isSpent, UInt derivationIndex, ChainPosition chainPosition)
-
-
Method Detail
-
getOutpoint
final OutPoint getOutpoint()
Reference to a transaction output
-
setOutpoint
final Unit setOutpoint(OutPoint outpoint)
Reference to a transaction output
-
getKeychain
final KeychainKind getKeychain()
Type of keychain
-
setKeychain
final Unit setKeychain(KeychainKind keychain)
Type of keychain
-
getDerivationIndex
final UInt getDerivationIndex()
The derivation index for the script pubkey in the wallet
-
setDerivationIndex
final Unit setDerivationIndex(UInt derivationIndex)
The derivation index for the script pubkey in the wallet
-
getChainPosition
final ChainPosition getChainPosition()
The position of the output in the blockchain.
-
setChainPosition
final Unit setChainPosition(ChainPosition chainPosition)
The position of the output in the blockchain.
-
-
-
-