remove offline peer

This commit is contained in:
Daniel Lugo 2020-10-24 06:24:10 -04:00
parent b0dd00279e
commit 2606a22596
2 changed files with 3 additions and 3 deletions

View file

@ -46,7 +46,7 @@ module.exports = (mainnet = false) => {
logfile: "shockapi.log", logfile: "shockapi.log",
lndLogFile: parsePath(`${lndDirectory}/logs/bitcoin/${network}/lnd.log`), lndLogFile: parsePath(`${lndDirectory}/logs/bitcoin/${network}/lnd.log`),
lndDirPath: lndDirectory, lndDirPath: lndDirectory,
peers: ['http://gun.shock.network:8765/gun','http://gun2.shock.network:8765/gun'], peers: ['http://gun.shock.network:8765/gun'],
useTLS: false, useTLS: false,
tokenExpirationMS: 259200000 tokenExpirationMS: 259200000
}; };

View file

@ -23,7 +23,7 @@
gun = Gun({ gun = Gun({
peers: [ peers: [
'http://gun.shock.network:8765/gun', 'http://gun.shock.network:8765/gun',
'http://gun2.shock.network:8765/gun' //'http://gun2.shock.network:8765/gun'
], ],
axe: false axe: false
}) })