Make MemoryFullPrunedBlockStore just implement FullPrunedBlockStore.

UTXOProvider is redundant
This commit is contained in:
Oscar Guindzberg 2015-02-23 17:57:45 -03:00 committed by Mike Hearn
parent dbf04a812b
commit 03f2f9e47a

View File

@ -235,7 +235,7 @@ class TransactionalMultiKeyHashMap<UniqueKeyType, MultiKeyType, ValueType> {
* Keeps {@link StoredBlock}s, {@link StoredUndoableBlock}s and {@link org.bitcoinj.core.UTXO}s in memory.
* Used primarily for unit testing.
*/
public class MemoryFullPrunedBlockStore implements FullPrunedBlockStore, UTXOProvider {
public class MemoryFullPrunedBlockStore implements FullPrunedBlockStore {
protected static class StoredBlockAndWasUndoableFlag {
public StoredBlock block;
public boolean wasUndoable;