aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-11-16 20:48:58 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2012-11-16 20:48:58 +0000
commitab67ec869521a4b8b687103eb1ea01cb8b023eef (patch)
tree368f581e69d33197d919e9677472574bc64d4d4e
parent0b37038d2ba67b2f57511f5ebd459f2da1b78a6a (diff)
parent9845499fa14e76161e8b349bb7eccce69578492c (diff)
downloadbitcoin-ab67ec869521a4b8b687103eb1ea01cb8b023eef.tar.xz
Merge branch '0.6.x' into 0.7.x
Conflicts: src/main.cpp
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 6ab9087339..b63d68187c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1484,7 +1484,7 @@ bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex, bool fJustCheck)
}
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;