LevelDBFullPrunedBlockStore: Fix typo in exception message.

This commit is contained in:
Alok Menghrajani
2018-09-20 21:04:26 +02:00
committed by Andreas Schildbach
parent 6b79d5e43b
commit b9adef2719

View File

@@ -317,7 +317,7 @@ public class LevelDBFullPrunedBlockStore implements FullPrunedBlockStore {
this.verifiedChainHeadBlock = get(hash);
this.verifiedChainHeadHash = hash;
if (this.verifiedChainHeadBlock == null) {
throw new BlockStoreException("corrupt databse block store - verified head block not found");
throw new BlockStoreException("corrupt database block store - verified head block not found");
}
}