main: do not log error when spent info not found

This commit is contained in:
Braydon Fuller 2016-06-01 14:57:39 -04:00 committed by Simon
parent ededdf1413
commit 3d4431a176
1 changed files with 1 additions and 1 deletions

View File

@ -1615,7 +1615,7 @@ bool GetSpentIndex(CSpentIndexKey &key, CSpentIndexValue &value)
return true;
if (!pblocktree->ReadSpentIndex(key, value))
return error("unable to get spent info");
return false;
return true;
}