diff options
author | Lawrence Nahum <lawrence@greenaddress.it> | 2017-08-21 13:22:23 +0200 |
---|---|---|
committer | Lawrence Nahum <lawrence@greenaddress.it> | 2017-09-06 09:25:00 +0200 |
commit | 467cbbcbfc8876ae0955aaf82f2af83c352ad27f (patch) | |
tree | e7d717271b2f5d6fcd6350cce74607c6ee513a6e /src/validation.cpp | |
parent | 6866b4912b8013ed748d12250209f7079a3c92e6 (diff) |
Add return value to DumpMempool
Diffstat (limited to 'src/validation.cpp')
-rw-r--r-- | src/validation.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index 3b9636839d..ca0d6a8713 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -4332,7 +4332,7 @@ bool LoadMempool(void) return true; } -void DumpMempool(void) +bool DumpMempool(void) { int64_t start = GetTimeMicros(); @@ -4352,7 +4352,7 @@ void DumpMempool(void) try { FILE* filestr = fsbridge::fopen(GetDataDir() / "mempool.dat.new", "wb"); if (!filestr) { - return; + return false; } CAutoFile file(filestr, SER_DISK, CLIENT_VERSION); @@ -4376,7 +4376,9 @@ void DumpMempool(void) LogPrintf("Dumped mempool: %gs to copy, %gs to dump\n", (mid-start)*MICRO, (last-mid)*MICRO); } catch (const std::exception& e) { LogPrintf("Failed to dump mempool: %s. Continuing anyway.\n", e.what()); + return false; } + return true; } //! Guess how far we are in the verification process at the given block index |