| 234 | } |
| 235 | |
| 236 | string JSONRPCReply(const Value& result, const Value& error, const Value& id) { |
| 237 | Object reply = JSONRPCReplyObj(result, error, id); |
| 238 | return write_string(Value(reply), false) + "\n"; |
| 239 | } |
| 240 | |
| 241 | Object JSONRPCError(int code, const string& message) { |
| 242 | Object error; |
no test coverage detected