Skip to content

Commit 942b497

Browse files
authored
chore(gateway): remove dead DoH resolver for .crypto TLD (#1118)
closes #772
1 parent e8ef4a2 commit 942b497

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ The following emojis are used to highlight certain changes:
2424

2525
### Removed
2626

27+
- `gateway`: removed dead DoH resolver for `.crypto` TLD (Unstoppable Domains) [#772](https://github.com/ipfs/boxo/issues/772)
2728
- `cmd/boxo-migrate`: removed code for go-ipfs migration -- no longer needed.
2829
- `cmd/deprecator`: removed code to deprecare relocated ipfs packages -- no longer needed.
2930

gateway/dns.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import (
1010
)
1111

1212
var defaultResolvers = map[string]string{
13-
"eth.": "https://dns.eth.limo/dns-query",
14-
"crypto.": "https://resolver.unstoppable.io/dns-query",
13+
"eth.": "https://dns.eth.limo/dns-query",
1514
}
1615

1716
func newResolver(url string, opts ...doh.Option) (madns.BasicResolver, error) {

0 commit comments

Comments
 (0)