rpc/*,rest: Add review-only assertion to EnsureChainman

This commit is contained in:
Carl Dong
2020-10-15 13:02:06 -04:00
parent cced0f46c9
commit d0abf0bf42

View File

@@ -79,6 +79,7 @@ ChainstateManager& EnsureChainman(const std::any& context)
if (!node.chainman) {
throw JSONRPCError(RPC_INTERNAL_ERROR, "Node chainman not found");
}
WITH_LOCK(::cs_main, CHECK_NONFATAL(std::addressof(g_chainman) == std::addressof(*node.chainman)));
return *node.chainman;
}