Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
ML_DNS_SRV_NETWORK: mainnet
ML_DNS_SRV_BIND_ADDR: 0.0.0.0:53
# Addresses taken from predefined_peer_addresses for mainnet.
ML_DNS_SRV_RESERVED_NODES: 51.159.232.144:3031,51.159.179.229:3031,151.115.35.206:3031,172.232.50.132:3031,103.3.61.21:3031
ML_DNS_SRV_RESERVED_NODES: 51.15.192.100:3031,51.158.236.130:3031,151.115.60.31:3031,172.232.43.9:3031,139.162.4.113:3031
ML_DNS_SRV_HOST: $DNS_SERVER_HOST_PARAM
ML_DNS_SRV_NAMESERVER: $DNS_SERVER_NAMESERVER_PARAM
ML_DNS_SRV_MBOX: $DNS_SERVER_MBOX_PARAM
Expand Down
10 changes: 5 additions & 5 deletions common/src/chain/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,11 @@ impl ChainType {
match self {
ChainType::Mainnet => {
vec![
"51.159.232.144:3031".parse().expect("Cannot fail"),
"51.159.179.229:3031".parse().expect("Cannot fail"),
"151.115.35.206:3031".parse().expect("Cannot fail"),
"172.232.50.132:3031".parse().expect("Cannot fail"),
"103.3.61.21:3031".parse().expect("Cannot fail"),
"51.15.192.100:3031".parse().expect("Cannot fail"),
"51.158.236.130:3031".parse().expect("Cannot fail"),
"151.115.60.31:3031".parse().expect("Cannot fail"),
"172.232.43.9:3031".parse().expect("Cannot fail"),
"139.162.4.113:3031".parse().expect("Cannot fail"),
]
}
ChainType::Testnet => {
Expand Down