| 329 | } |
| 330 | |
| 331 | bool RPCIsInWarmup(std::string *outStatus) |
| 332 | { |
| 333 | LOCK(g_rpc_warmup_mutex); |
| 334 | if (outStatus) |
| 335 | *outStatus = rpcWarmupStatus; |
| 336 | return fRPCInWarmup; |
| 337 | } |
| 338 | |
| 339 | bool IsDeprecatedRPCEnabled(const std::string& method) |
| 340 | { |
no outgoing calls