package org.bitcoinj.core; import org.bitcoinj.store.BlockStoreException; import org.bitcoinj.store.FullPrunedBlockStore; import org.bitcoinj.store.MemoryFullPrunedBlockStore; /** * A MemoryStore implementation of the FullPrunedBlockStoreTest */ public class MemoryFullPrunedBlockChainTest extends AbstractFullPrunedBlockChainTest { @Override public FullPrunedBlockStore createStore(NetworkParameters params, int blockCount) throws BlockStoreException { return new MemoryFullPrunedBlockStore(params, blockCount); } @Override public void resetStore(FullPrunedBlockStore store) throws BlockStoreException { //No-op for memory store, because it's not persistent } }