Merge pull request #21 from braydonf/0.12.1-bitcore-spentlog

main: do not log error when spent info not found
This commit is contained in:
Chris Kleeschulte
2016-06-15 13:37:04 -04:00
committed by GitHub

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;
}