mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-12 16:17:53 +00:00
Add MESSAGE_START_SIZE from chainparams when loading blocks from external files.
This commit is contained in:
parent
89bbd54fbf
commit
0caf2b187f
@ -3092,11 +3092,11 @@ bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos *dbp)
|
||||
unsigned int nSize = 0;
|
||||
try {
|
||||
// locate a header
|
||||
unsigned char buf[4];
|
||||
unsigned char buf[MESSAGE_START_SIZE];
|
||||
blkdat.FindByte(Params().MessageStart()[0]);
|
||||
nRewind = blkdat.GetPos()+1;
|
||||
blkdat >> FLATDATA(buf);
|
||||
if (memcmp(buf, Params().MessageStart(), 4))
|
||||
if (memcmp(buf, Params().MessageStart(), MESSAGE_START_SIZE))
|
||||
continue;
|
||||
// read size
|
||||
blkdat >> nSize;
|
||||
|
Loading…
Reference in New Issue
Block a user