diff options
Diffstat (limited to 'src/wallet/init.h')
-rw-r--r-- | src/wallet/init.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wallet/init.h b/src/wallet/init.h index 588357119c..0d5e5f0cde 100644 --- a/src/wallet/init.h +++ b/src/wallet/init.h @@ -9,6 +9,7 @@ #include <string> class CRPCTable; +class CScheduler; //! Return the wallets help message. std::string GetWalletHelpString(bool showDebug); @@ -27,6 +28,9 @@ bool VerifyWallets(); //! Load wallet databases. bool OpenWallets(); +//! Complete startup of wallets. +void StartWallets(CScheduler& scheduler); + //! Flush all wallets in preparation for shutdown. void FlushWallets(); |