| 344 | } |
| 345 | |
| 346 | static UniValue syncwithvalidationinterfacequeue(const JSONRPCRequest& request) |
| 347 | { |
| 348 | if (request.fHelp || request.params.size() > 0) { |
| 349 | throw std::runtime_error( |
| 350 | "syncwithvalidationinterfacequeue\n" |
| 351 | "\nWaits for the validation interface queue to catch up on everything that was there when we entered this function.\n" |
| 352 | "\nExamples:\n" |
| 353 | + HelpExampleCli("syncwithvalidationinterfacequeue","") |
| 354 | + HelpExampleRpc("syncwithvalidationinterfacequeue","") |
| 355 | ); |
| 356 | } |
| 357 | SyncWithValidationInterfaceQueue(); |
| 358 | return NullUniValue; |
| 359 | } |
| 360 | |
| 361 | static UniValue getdifficulty(const JSONRPCRequest& request) |
| 362 | { |
nothing calls this directly
no test coverage detected