Package | Description |
---|---|
org.bitcoinj.core |
The core package contains classes for network messages like
Block and
Transaction , peer connectivity via PeerGroup ,
and block chain management. |
org.bitcoinj.store |
Block stores persist blockchain data downloaded from remote peers.
|
org.bitcoinj.wallet |
Classes that support the
Wallet , which knows how to find and save transactions relevant to
a set of keys or scripts, calculate balances, and spend money: the wallet has many features and can be extended
in various ways, please refer to the website for documentation on how to use it. |
Modifier and Type | Method and Description |
---|---|
int |
UTXOProvider.getChainHeadHeight()
Get the height of the chain head.
|
List<UTXO> |
UTXOProvider.getOpenTransactionOutputs(List<Address> addresses)
Get the list of
UTXO 's for a given address. |
Modifier and Type | Method and Description |
---|---|
int |
MemoryFullPrunedBlockStore.getChainHeadHeight() |
int |
LevelDBFullPrunedBlockStore.getChainHeadHeight() |
int |
DatabaseFullPrunedBlockStore.getChainHeadHeight() |
List<UTXO> |
MemoryFullPrunedBlockStore.getOpenTransactionOutputs(List<Address> addresses) |
List<UTXO> |
LevelDBFullPrunedBlockStore.getOpenTransactionOutputs(List<Address> addresses) |
List<UTXO> |
DatabaseFullPrunedBlockStore.getOpenTransactionOutputs(List<Address> addresses) |
Modifier and Type | Method and Description |
---|---|
protected List<UTXO> |
Wallet.getStoredOutputsFromUTXOProvider()
Get all the
UTXO 's from the UTXOProvider based on keys that the
wallet contains. |
Copyright © 2016. All rights reserved.