diff --git a/src/api/mod.rs b/src/api/mod.rs index a10f512..9690ba1 100644 --- a/src/api/mod.rs +++ b/src/api/mod.rs @@ -59,13 +59,6 @@ struct GetIntID { pub fn new_rpc_module(state: RpcState) -> RpcModule { let mut module = RpcModule::new(state); - module - .register_method("ping", |_, _| { - info!("ping called"); - "pong" - }) - .unwrap(); - module .register_method("system.get_user", system::get_user) .unwrap();