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
parent bd8328ceb9
commit 347f0d1ed4

View File

@ -1471,7 +1471,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;
}