| 50 | } |
| 51 | |
| 52 | string JSONRPCReply(const UniValue& result, const UniValue& error, const UniValue& id) |
| 53 | { |
| 54 | UniValue reply = JSONRPCReplyObj(result, error, id); |
| 55 | return reply.write() + "\n"; |
| 56 | } |
| 57 | |
| 58 | UniValue JSONRPCError(int code, const string& message) |
| 59 | { |
no test coverage detected