diff options
author | Carl Dong <contact@carldong.me> | 2022-05-27 16:47:05 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2022-06-02 11:42:12 -0400 |
commit | 265d6393bf9ef52e7ef7de97ca9c031da82a5ad1 (patch) | |
tree | 5fd6e341d903e3b78c7ad25c090d08fbcf9a6034 /src/init.h | |
parent | fed085a1a4cd2787202752b6a0d98e42dce97f09 (diff) |
Move init::SanityCheck to kernel::SanityCheck
Diffstat (limited to 'src/init.h')
-rw-r--r-- | src/init.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.h b/src/init.h index 4251fa33ae..e8e6a55eba 100644 --- a/src/init.h +++ b/src/init.h @@ -50,7 +50,7 @@ bool AppInitParameterInteraction(const ArgsManager& args, bool use_syscall_sandb * @note This can be done before daemonization. Do not call Shutdown() if this function fails. * @pre Parameters should be parsed and config file should be read, AppInitParameterInteraction should have been called. */ -bool AppInitSanityChecks(); +bool AppInitSanityChecks(const kernel::Context& kernel); /** * Lock bitcoin core data directory. * @note This should only be done after daemonization. Do not call Shutdown() if this function fails. |