mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-18 04:41:21 +02:00
refactor: use CHECK_NONFATAL to avoid single-use symbol
This commit is contained in:
parent
8426e018bf
commit
323cfed595
@ -778,9 +778,7 @@ static RPCHelpMan getblocktemplate()
|
|||||||
}
|
}
|
||||||
ENTER_CRITICAL_SECTION(cs_main);
|
ENTER_CRITICAL_SECTION(cs_main);
|
||||||
|
|
||||||
std::optional<uint256> maybe_tip{miner.getTipHash()};
|
tip = CHECK_NONFATAL(miner.getTipHash()).value();
|
||||||
CHECK_NONFATAL(maybe_tip);
|
|
||||||
tip = maybe_tip.value();
|
|
||||||
|
|
||||||
if (!IsRPCRunning())
|
if (!IsRPCRunning())
|
||||||
throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Shutting down");
|
throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Shutting down");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user