src/txmempool.cpp: make numEntries a uint32_t

Don't ever serialize a size_t or long, their sizes are platform
dependent.
This commit is contained in:
Wladimir J. van der Laan 2014-12-19 15:21:47 +01:00
parent f4e6487219
commit 9f4fac98c4
1 changed files with 2 additions and 2 deletions

View File

@ -337,7 +337,7 @@ public:
void Write(CAutoFile& fileout) const
{
fileout << nBestSeenHeight;
fileout << history.size();
fileout << (uint32_t)history.size();
BOOST_FOREACH(const CBlockAverage& entry, history)
{
entry.Write(fileout);
@ -348,7 +348,7 @@ public:
{
int nFileBestSeenHeight;
filein >> nFileBestSeenHeight;
size_t numEntries;
uint32_t numEntries;
filein >> numEntries;
if (numEntries <= 0 || numEntries > 10000)
throw runtime_error("Corrupt estimates file. Must have between 1 and 10k entries.");