3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 18:25:51 +00:00

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.verifiedChainHeadBlock = get(hash);
this.verifiedChainHeadHash = hash; this.verifiedChainHeadHash = hash;
if (this.verifiedChainHeadBlock == null) { 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");
} }
} }