diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-11-17 01:00:20 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-11-17 01:00:20 -0800 |
| commit | 4725e96a3aaa4dd602bd356390d190c6777c3a60 (patch) | |
| tree | 82ba099ddee67838ba6df60db8766ab8e6accd0d /src/main.cpp | |
| parent | Merge pull request #2019 from Diapolo/bitcoinstrings_upd (diff) | |
| parent | ConnectBlock(): fix error() format to be unsigned (diff) | |
| download | discoin-4725e96a3aaa4dd602bd356390d190c6777c3a60.tar.xz discoin-4725e96a3aaa4dd602bd356390d190c6777c3a60.zip | |
Merge pull request #2022 from Diapolo/fix_#2018
fix pull #2018
Diffstat (limited to 'src/main.cpp')
| -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 beb788aa4..808c213d6 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; |