Skip to content

Commit

Permalink
Skip mempool.dat when wallet is starting in "zap" mode (#2782)
Browse files Browse the repository at this point in the history
  • Loading branch information
UdjinM6 authored and codablock committed Mar 21, 2019
1 parent b878210 commit 60a9184
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4513,6 +4513,11 @@ static const uint64_t MEMPOOL_DUMP_VERSION = 1;

bool LoadMempool(void)
{
if (GetBoolArg("-zapwallettxes", false)) {
LogPrintf("Skipping mempool.dat because of zapwallettxes\n");
return true;
}

int64_t nExpiryTimeout = GetArg("-mempoolexpiry", DEFAULT_MEMPOOL_EXPIRY) * 60 * 60;
FILE* filestr = fopen((GetDataDir() / "mempool.dat").string().c_str(), "rb");
CAutoFile file(filestr, SER_DISK, CLIENT_VERSION);
Expand Down

0 comments on commit 60a9184

Please sign in to comment.