Skip to content

Commit

Permalink
Fix default DNS seed port
Browse files Browse the repository at this point in the history
  • Loading branch information
ignopeverell committed Jan 15, 2019
1 parent 8fc489a commit 0510ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servers/src/grin/seed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ pub fn dns_seeds() -> Box<dyn Fn() -> Vec<SocketAddr> + Send> {
Ok(addrs) => addresses.append(
&mut (addrs
.map(|mut addr| {
addr.set_port(13414);
addr.set_port(if global::is_floonet() { 13414 } else { 3414 });
addr
})
.filter(|addr| !temp_addresses.contains(addr))
Expand Down

0 comments on commit 0510ba9

Please sign in to comment.