diff options
| author | Luke Dashjr <[email protected]> | 2012-11-17 09:05:19 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-11-17 09:05:19 +0000 |
| commit | 6d3d1b985f11d5fc102fe7e2d77c9f09131e7ea7 (patch) | |
| tree | 4fb3d3125d29a35021e33f746fd051ca07661830 /src | |
| parent | Merge branch '0.6.0.x' into 0.6.x (diff) | |
| parent | Merge branch '0.5.x' into 0.6.0.x (diff) | |
| download | discoin-6d3d1b985f11d5fc102fe7e2d77c9f09131e7ea7.tar.xz discoin-6d3d1b985f11d5fc102fe7e2d77c9f09131e7ea7.zip | |
Merge branch '0.6.0.x' into 0.6.x
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 76b355717..15140c269 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1369,7 +1369,7 @@ bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex) } if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees)) - return error("ConnectBlock() : coinbase pays too much (actual=%lld vs limit=%lld)", (long long)vtx[0].GetValueOut(), (long long)GetBlockValue(pindex->nHeight, nFees)); + return error("ConnectBlock() : coinbase pays too much (actual=%"PRI64d" vs limit=%"PRI64d")", vtx[0].GetValueOut(), GetBlockValue(pindex->nHeight, nFees)); // Update block index on disk without changing it in memory. // The memory index structure will be changed after the db commits. |