aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-08-28 12:53:56 -0400
committerJohn Newbery <john@johnnewbery.com>2017-09-07 16:21:26 -0700
commit77fe07c1591395b4279f9f2ff3c36c6bde11fbb7 (patch)
tree340158d4f541bb9f4bbc7bbe1615ba1e1a2e66d2 /src/init.cpp
parent2da5eafa47cdf81107bd3e71a709d404ebb6dcdb (diff)
downloadbitcoin-77fe07c1591395b4279f9f2ff3c36c6bde11fbb7.tar.xz
[wallet] Add StopWallets() function to wallet/init.cpp
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 6d250a25cf..d1ffe126d4 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -189,7 +189,7 @@ void Shutdown()
StopRPC();
StopHTTPServer();
#ifdef ENABLE_WALLET
- FlushWallets(false);
+ FlushWallets();
#endif
MapPort(false);
UnregisterValidationInterface(peerLogic.get());
@@ -244,7 +244,7 @@ void Shutdown()
pblocktree = nullptr;
}
#ifdef ENABLE_WALLET
- FlushWallets(true);
+ StopWallets();
#endif
#if ENABLE_ZMQ