Skip to content

Commit

Permalink
1.3.4
Browse files Browse the repository at this point in the history
fix port wrong
  • Loading branch information
unknown committed Apr 26, 2022
1 parent 7072fd1 commit 4ec389b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cryptodoge/full_node/full_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,8 @@ def set_server(self, server: CryptodogeServer):
if "dns_servers" in self.config:
dns_servers = self.config["dns_servers"]
elif self.config["port"] == 15994:
# If `dns_servers` misses from the `config`, hardcode it if we're running mainnet.
# fix port
# If `dns_servers` misses from the `config`, hardcode it if we're running mainnet.
dns_servers.append("dns-introducer.cryptodoge.cc")
try:
self.full_node_peers = FullNodePeers(
Expand Down

0 comments on commit 4ec389b

Please sign in to comment.