Skip to content

Commit

Permalink
fix: use udp/quic instead of tcp/quic in NoAnnounceAddress (#1560)
Browse files Browse the repository at this point in the history
Resolves #1457
  • Loading branch information
tzdybal authored Jan 5, 2023
1 parent 8f13efa commit bada042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodebuilder/p2p/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func DefaultConfig() Config {
AnnounceAddresses: []string{},
NoAnnounceAddresses: []string{
"/ip4/0.0.0.0/udp/2121/quic",
"/ip4/127.0.0.1/tcp/2121/quic",
"/ip4/127.0.0.1/udp/2121/quic",
"/ip6/::/udp/2121/quic",
"/ip4/0.0.0.0/tcp/2121",
"/ip4/127.0.0.1/tcp/2121",
Expand Down

0 comments on commit bada042

Please sign in to comment.