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/bitcoind.cpp | |
parent | fed085a1a4cd2787202752b6a0d98e42dce97f09 (diff) |
Move init::SanityCheck to kernel::SanityCheck
Diffstat (limited to 'src/bitcoind.cpp')
-rw-r--r-- | src/bitcoind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index 0cf9ad49dc..92e73d7c2a 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -190,7 +190,7 @@ static bool AppInit(NodeContext& node, int argc, char* argv[]) } node.kernel = std::make_unique<kernel::Context>(); - if (!AppInitSanityChecks()) + if (!AppInitSanityChecks(*node.kernel)) { // InitError will have been called with detailed error, which ends up on console return false; |