diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-11-17 01:00:20 -0800 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-11-17 01:00:20 -0800 |
commit | 4725e96a3aaa4dd602bd356390d190c6777c3a60 (patch) | |
tree | 82ba099ddee67838ba6df60db8766ab8e6accd0d | |
parent | 98e7771ca18d64759a138e8c0f14e194758903a4 (diff) | |
parent | 11406c89fe57c2b3b678e41aa882d1e10ab4798a (diff) |
Merge pull request #2022 from Diapolo/fix_#2018
fix pull #2018
-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 beb788aa4d..808c213d63 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1610,7 +1610,7 @@ bool CBlock::ConnectBlock(CBlockIndex* pindex, CCoinsViewCache &view, bool fJust } if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees)) - return error("ConnectBlock() : coinbase pays too much (actual=%"PRI64u" vs limit=%"PRI64u")", vtx[0].GetValueOut(), GetBlockValue(pindex->nHeight, nFees)); + return error("ConnectBlock() : coinbase pays too much (actual=%"PRI64d" vs limit=%"PRI64d")", vtx[0].GetValueOut(), GetBlockValue(pindex->nHeight, nFees)); if (fJustCheck) return true; |