Skip to content

Commit

Permalink
fix: update tracker list to wss and ws only items
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianbormann committed Aug 7, 2023
1 parent a313395 commit 281724b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/CardanoPeerConnect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ export default abstract class CardanoPeerConnect {
this.seed = args.seed ?? null;
this.discoverySeed = args.discoverySeed ?? null;
this.announceEndpoints = args.announce ?? [
'https://pro.passwordchaos.gimbalabs.io',
'wss://tracker.openwebtorrent.com',
'wss://dev.tracker.cf-identity-wallet.metadata.dev.cf-deployments.org',
'wss://tracker.files.fm:7073/announce',
'wss://tracker.btorrent.xyz',
'ws://tracker.files.fm:7072/announce',
'wss://tracker.openwebtorrent.com:443/announce',
];
Expand Down
6 changes: 3 additions & 3 deletions src/DAppPeerConnect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,11 @@ export default class DAppPeerConnect {

if (!announce) {
announce = [
'wss://tracker.files.fm:7073/announce',
'wss://tracker.openwebtorrent.com',
'wss://dev.tracker.cf-identity-wallet.metadata.dev.cf-deployments.org',
'wss://tracker.files.fm:7073/announce',
'ws://tracker.files.fm:7072/announce',
'udp://tracker.opentrackr.org:1337/announce',
'http://tracker.openbittorrent.com:80/announce',
'wss://tracker.openwebtorrent.com:443/announce',
];
}

Expand Down

0 comments on commit 281724b

Please sign in to comment.