From 13b2996be4d42873056f3c8778bad47df765de95 Mon Sep 17 00:00:00 2001 From: hanabi1224 Date: Wed, 9 Oct 2024 06:52:38 +0800 Subject: [PATCH] change Ok type --- src/rpc/methods/f3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/methods/f3.rs b/src/rpc/methods/f3.rs index ab9180a3f2a..415ce544925 100644 --- a/src/rpc/methods/f3.rs +++ b/src/rpc/methods/f3.rs @@ -580,7 +580,7 @@ impl RpcMethod<0> for F3IsRunning { const PERMISSION: Permission = Permission::Read; type Params = (); - type Ok = bool; + type Ok = serde_json::Value; async fn handle(_: Ctx, (): Self::Params) -> Result { let client = get_rpc_http_client()?;