From fbab43f169924c681ef085639b3e4de6c74a4958 Mon Sep 17 00:00:00 2001 From: Anthony Towns Date: Fri, 28 Jan 2022 17:14:29 +1000 Subject: [PATCH] rpc/blockchain: a constant craving --- src/rpc/blockchain.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index f68a3d2277acb..163f59300f061 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1669,16 +1669,16 @@ static RPCHelpMan getdeploymentinfo() RPCExamples{ HelpExampleCli("getdeploymentinfo", "") + HelpExampleRpc("getdeploymentinfo", "") }, [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue { - ChainstateManager& chainman = EnsureAnyChainman(request.context); + const ChainstateManager& chainman = EnsureAnyChainman(request.context); LOCK(cs_main); - CChainState& active_chainstate = chainman.ActiveChainstate(); + const CChainState& active_chainstate = chainman.ActiveChainstate(); const CBlockIndex* tip; if (request.params[0].isNull()) { tip = active_chainstate.m_chain.Tip(); CHECK_NONFATAL(tip); } else { - uint256 hash(ParseHashV(request.params[0], "blockhash")); + const uint256 hash(ParseHashV(request.params[0], "blockhash")); tip = chainman.m_blockman.LookupBlockIndex(hash); if (!tip) { throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Block not found");