mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
LLu is standard, but not portable. use ULL
This commit is contained in:
parent
a38eaea082
commit
775b7b8d70
@ -245,7 +245,7 @@ uint64_t ReadCompactSize(Stream& is)
|
|||||||
uint64_t xSize;
|
uint64_t xSize;
|
||||||
READDATA(is, xSize);
|
READDATA(is, xSize);
|
||||||
nSizeRet = xSize;
|
nSizeRet = xSize;
|
||||||
if (nSizeRet < 0x100000000LLu)
|
if (nSizeRet < 0x100000000ULL)
|
||||||
throw std::ios_base::failure("non-canonical ReadCompactSize()");
|
throw std::ios_base::failure("non-canonical ReadCompactSize()");
|
||||||
}
|
}
|
||||||
if (nSizeRet > (uint64_t)MAX_SIZE)
|
if (nSizeRet > (uint64_t)MAX_SIZE)
|
||||||
|
Loading…
Reference in New Issue
Block a user