| 342 | } |
| 343 | |
| 344 | bool RPCIsInWarmup(std::string *outStatus) |
| 345 | { |
| 346 | LOCK(g_rpc_warmup_mutex); |
| 347 | if (outStatus) |
| 348 | *outStatus = rpcWarmupStatus; |
| 349 | return fRPCInWarmup; |
| 350 | } |
| 351 | |
| 352 | bool IsDeprecatedRPCEnabled(const std::string& method) |
| 353 | { |
no outgoing calls