Handle updating exit node and fix raw resource issues

This commit is contained in:
Owen
2025-10-16 13:55:08 -07:00
parent 46807c6477
commit ec7211a15d
4 changed files with 6 additions and 53 deletions

View File

@@ -52,7 +52,7 @@ export async function createExitNode(publicKey: string, reachableAt: string | un
.where(eq(exitNodes.publicKey, publicKey))
.returning();
logger.info(`Updated exit node`);
logger.info(`Updated exit node with reachableAt to ${reachableAt}`);
}
return exitNode;