rework PR comments

This commit is contained in:
Claus-Peter Hübner 2022-11-25 03:03:17 +01:00
parent d021cb2918
commit 111602c707

View File

@ -19,10 +19,10 @@ async function main() {
})
// start DHT hyperswarm when DHT_TOPIC is set in .env
if (CONFIG.FEDERATE_DHT_TOPIC) {
if (CONFIG.FEDERATION_DHT_TOPIC) {
// eslint-disable-next-line no-console
console.log(`Federation/DHT active on ${CONFIG.FEDERATE_DHT_TOPIC}`)
await startDHT(CONFIG.FEDERATE_DHT_TOPIC) // con,
console.log(`Federation active on ${CONFIG.FEDERATION_DHT_TOPIC}`)
await startDHT(CONFIG.FEDERATION_DHT_TOPIC) // con,
}
}