Package | Description |
---|---|
org.bitcoinj.core |
The core package contains classes for network messages like
Block and
Transaction , peer connectivity via PeerGroup ,
block chain management and the Wallet class. |
org.bitcoinj.store |
Block stores persist blockchain data downloaded from remote peers.
|
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. |
protected List<UTXO> |
Wallet.getStoredOutputsFromUTXOProvider()
Get all the
UTXO 's from the UTXOProvider based on keys that the
wallet contains. |
Modifier and Type | Method and Description |
---|---|
int |
MemoryFullPrunedBlockStore.getChainHeadHeight() |
int |
DatabaseFullPrunedBlockStore.getChainHeadHeight() |
List<UTXO> |
MemoryFullPrunedBlockStore.getOpenTransactionOutputs(List<Address> addresses) |
List<UTXO> |
DatabaseFullPrunedBlockStore.getOpenTransactionOutputs(List<Address> addresses) |
Copyright © 2016. All rights reserved.