We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94e6094 commit 6365ea7Copy full SHA for 6365ea7
src/components/P2P/index.ts
@@ -316,7 +316,7 @@ export class OceanP2P extends EventEmitter {
316
listen: bindInterfaces,
317
announceFilter: (multiaddrs: any[]) =>
318
multiaddrs.filter((m) => this.shouldAnnounce(m)),
319
- announce: config.p2pConfig.announceAddresses
+ appendAnnounce: config.p2pConfig.announceAddresses
320
}
321
} else {
322
addresses = {
@@ -360,7 +360,9 @@ export class OceanP2P extends EventEmitter {
360
dcutr: dcutr(),
361
keychain: keychain(),
362
http: http(),
363
- autoTLS: autoTLS()
+ autoTLS: autoTLS({
364
+ autoConfirmAddress: true
365
+ })
366
367
368
// eslint-disable-next-line no-constant-condition, no-self-compare
0 commit comments