Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit b939882

Browse files
committed
fix lint issues
1 parent 829b8a5 commit b939882

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/app/api.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ struct JsonRpcResponse {
3232
error: Option<JsonRpcError>,
3333
}
3434

35-
// Type alias for batch responses
36-
type JsonRpcBatchResponse = Vec<JsonRpcResponse>;
37-
3835
#[derive(Debug, Deserialize, Serialize)]
3936
struct JsonRpcError {
4037
code: i32,
@@ -45,7 +42,6 @@ struct JsonRpcError {
4542

4643
// JSON-RPC error codes
4744
// Standard JSON-RPC error codes
48-
const PARSE_ERROR: i32 = -32700;
4945
const INVALID_REQUEST: i32 = -32600;
5046
const METHOD_NOT_FOUND: i32 = -32601;
5147
const INVALID_PARAMS: i32 = -32602;

0 commit comments

Comments
 (0)