Browse Source

Print error for coinbase-pays-too-much case of ConnectBlock failing

0.8
Luke Dashjr 12 years ago
parent
commit
4ade04ddbd
  1. 2
      src/main.cpp

2
src/main.cpp

@ -1610,7 +1610,7 @@ bool CBlock::ConnectBlock(CBlockIndex* pindex, CCoinsViewCache &view, bool fJust @@ -1610,7 +1610,7 @@ bool CBlock::ConnectBlock(CBlockIndex* pindex, CCoinsViewCache &view, bool fJust
}
if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees))
return false;
return error("ConnectBlock() : coinbase pays too much (actual=%lld vs limit=%lld)", (long long)vtx[0].GetValueOut(), (long long)GetBlockValue(pindex->nHeight, nFees));
if (fJustCheck)
return true;

Loading…
Cancel
Save