diff options
author | John Newbery <john@johnnewbery.com> | 2017-08-29 11:47:06 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-09-07 16:21:26 -0700 |
commit | 43b0e81d0f8f5d235e1cdaa2ee128b67259f7109 (patch) | |
tree | 427059c5b9d0675285ec2b294c2212702d959d21 /src/wallet/init.cpp | |
parent | 290f3c56d9dd8a519920939a4fc440da832c1c63 (diff) |
[wallet] Add StartWallets() function to wallet/init.cpp
Diffstat (limited to 'src/wallet/init.cpp')
-rw-r--r-- | src/wallet/init.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wallet/init.cpp b/src/wallet/init.cpp index 9fd038150f..1e00735ed9 100644 --- a/src/wallet/init.cpp +++ b/src/wallet/init.cpp @@ -254,6 +254,12 @@ bool OpenWallets() return true; } +void StartWallets(CScheduler& scheduler) { + for (CWalletRef pwallet : vpwallets) { + pwallet->postInitProcess(scheduler); + } +} + void FlushWallets() { for (CWalletRef pwallet : vpwallets) { pwallet->Flush(false); |