mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
Merge pull request #4618
eb0b56b Simplify serialize.h's exception handling (Pieter Wuille)
This commit is contained in:
commit
5cd00bc8cb
3 changed files with 8 additions and 59 deletions
|
|
@ -3237,7 +3237,7 @@ bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos *dbp)
|
|||
}
|
||||
}
|
||||
uint64_t nRewind = blkdat.GetPos();
|
||||
while (blkdat.good() && !blkdat.eof()) {
|
||||
while (!blkdat.eof()) {
|
||||
boost::this_thread::interruption_point();
|
||||
|
||||
blkdat.SetPos(nRewind);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue