(response, label)
| 453 | |
| 454 | |
| 455 | def assert_rpc_success(response, label): |
| 456 | check("error" not in response, label + " returned JSON-RPC error: " + repr(response)) |
| 457 | check("result" in response, label + " returned no result: " + repr(response)) |
| 458 | |
| 459 | |
| 460 | def assert_rpc_cancelled(response, label): |
no test coverage detected