Skip to content

Commit bc0c33a

Browse files
committed
bug fix
1 parent b2ef316 commit bc0c33a

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

relay/src/config/env-config.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,7 @@ export const config = {
5555
}
5656
// Default public Gun peers
5757
return [
58-
"https://gun-manhattan.herokuapp.com/gun",
59-
"https://peer.wallie.io/gun",
60-
"https://gundb-relay-mlccl.ondigitalocean.app/gun",
61-
"https://plankton-app-6qfp3.ondigitalocean.app/gun",
62-
"https://gun.defucc.me/gun",
63-
"https://shogun-relay.scobrudot.dev/gun",
64-
"https://shogun-relay-2.scobrudot.dev/gun",
58+
"http://localhost:8765/gun"
6559
];
6660
})(),
6761
},

relay/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ async function initializeServer() {
530530
activeWires = statsTracker.getStats().connectedPeers;
531531
app.set("totalConnections", totalConnections);
532532
app.set("activeWires", activeWires);
533-
533+
534534
loggers.server.debug({ activeWires, addr }, `Connection opened`);
535535
});
536536

@@ -1174,7 +1174,7 @@ See docs/RELAY_KEYS.md for more information.
11741174
loggers.server.error({ err: err.message }, "❌ Scheduled Alias Maintenance failed");
11751175
}
11761176
}, ALIAS_MAINTENANCE_INTERVAL);
1177-
1177+
11781178
// Also run once on startup after 1 minute to clean legacy data
11791179
setTimeout(async () => {
11801180
loggers.server.info("🧹 Starting startup Alias Maintenance...");

0 commit comments

Comments
 (0)