chore: remove CLAUDE.md and stale config files

This commit is contained in:
Dorian
2026-04-12 12:11:00 -04:00
parent c71d543f4c
commit 53bea2124d
13 changed files with 198 additions and 249 deletions
+4
View File
@@ -101,12 +101,16 @@ impl RpcHandler {
|| format!("{}.onion", n.onion) == onion)
.map(|n| n.pubkey.clone());
// Include our node name so the recipient can display it
let node_name = data.server_info.name.clone();
node_message::send_to_peer(
onion,
&pubkey,
message,
Some(node_id.signing_key()),
recipient_pubkey.as_deref(),
node_name.as_deref(),
).await?;
Ok(serde_json::json!({ "ok": true, "sent_to": onion }))
}