mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-17 20:32:33 +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);
|
||||
|
||||
std::optional<uint256> maybe_tip{miner.getTipHash()};
|
||||
CHECK_NONFATAL(maybe_tip);
|
||||
tip = maybe_tip.value();
|
||||
tip = CHECK_NONFATAL(miner.getTipHash()).value();
|
||||
|
||||
if (!IsRPCRunning())
|
||||
throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Shutting down");
|
||||
|
Loading…
x
Reference in New Issue
Block a user