Skip to content

Commit

Permalink
change Ok type
Browse files Browse the repository at this point in the history
  • Loading branch information
hanabi1224 committed Oct 8, 2024
1 parent f978e5a commit 13b2996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpc/methods/f3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<impl Blockstore>, (): Self::Params) -> Result<Self::Ok, ServerError> {
let client = get_rpc_http_client()?;
Expand Down

0 comments on commit 13b2996

Please sign in to comment.