Package org.bitcoinj.store
package org.bitcoinj.store
Block stores persist blockchain data downloaded from remote peers. There is an SPV block store which preserves a ring
buffer of headers on disk and is suitable for lightweight user wallets, a store that can calculate a full indexed
UTXO set (i.e. it can query address balances), and a memory only store useful for unit tests.
-
ClassDescriptionAn implementor of BlockStore saves StoredBlock objects to disk.Thrown when something goes wrong with storing a block.Thrown by
SPVBlockStore
when the process cannot gain exclusive access to the chain file.An implementor of FullPrunedBlockStore saves StoredBlock objects to some storage mechanism.KeepsStoredBlock
s in memory.An SPVBlockStore holds a limited number of block headers in a memory mapped ring buffer.