From ee8f9af7175d6dafc50d0fd53ee275b0ae604303 Mon Sep 17 00:00:00 2001 From: tcheeric Date: Wed, 26 Nov 2025 18:26:22 +0000 Subject: [PATCH] fix: Update ping command response from 'ok' to 'pong' --- src/daemon/admin/commands/ping.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/admin/commands/ping.ts b/src/daemon/admin/commands/ping.ts index 7090e4b..2f18970 100644 --- a/src/daemon/admin/commands/ping.ts +++ b/src/daemon/admin/commands/ping.ts @@ -2,5 +2,5 @@ import { NDKKind, NDKRpcRequest } from "@nostr-dev-kit/ndk"; import AdminInterface from "../index.js"; export default async function ping(admin: AdminInterface, req: NDKRpcRequest) { - return admin.rpc.sendResponse(req.id, req.pubkey, "ok", NDKKind.NostrConnect); + return admin.rpc.sendResponse(req.id, req.pubkey, "pong", NDKKind.NostrConnect); }