Package | Description |
---|---|
org.bitcoinj.store |
Block stores persist blockchain data downloaded from remote peers.
|
Modifier and Type | Method and Description |
---|---|
StoredUndoableBlock |
PostgresFullPrunedBlockStore.getUndoBlock(Sha256Hash hash) |
StoredUndoableBlock |
MemoryFullPrunedBlockStore.getUndoBlock(Sha256Hash hash) |
StoredUndoableBlock |
H2FullPrunedBlockStore.getUndoBlock(Sha256Hash hash) |
StoredUndoableBlock |
FullPrunedBlockStore.getUndoBlock(Sha256Hash hash)
Returns a
StoredUndoableBlock whose block.getHash() method will be equal to the parameter. |
Modifier and Type | Method and Description |
---|---|
void |
PostgresFullPrunedBlockStore.put(StoredBlock storedBlock,
StoredUndoableBlock undoableBlock) |
void |
MemoryFullPrunedBlockStore.put(StoredBlock storedBlock,
StoredUndoableBlock undoableBlock) |
void |
H2FullPrunedBlockStore.put(StoredBlock storedBlock,
StoredUndoableBlock undoableBlock) |
void |
FullPrunedBlockStore.put(StoredBlock storedBlock,
StoredUndoableBlock undoableBlock)
Saves the given
StoredUndoableBlock and StoredBlock . |
Copyright © 2014. All rights reserved.