Skip to content

Commit

Permalink
Add "sahyadri.isrdc.in" to list of bootstrap nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
ivishwas authored and nbougalis committed Aug 19, 2019
1 parent ef139e8 commit c04c00d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
34 changes: 15 additions & 19 deletions cfg/rippled-example.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#-------------------------------------------------------------------------------
#
# Rippled Server Instance Configuration Example
#
#-------------------------------------------------------------------------------
#
Expand Down Expand Up @@ -369,29 +368,26 @@
#
# [ips]
#
# List of hostnames or ips where the Ripple protocol is served. For a starter
# list, you can either copy entries from: https://ripple.com/ripple.txt or if
# you prefer you can specify r.ripple.com 51235
# List of hostnames or ips where the Ripple protocol is served. A default
# starter list is included in the code and used if no other hostnames are
# available.
#
# One IPv4 address or domain names per line is allowed. A port may must be
# specified after adding a space to the address. By convention, if known,
# IPs are listed in from most to least trusted.
# One address or domain name per line is allowed. A port may must be
# specified after adding a space to the address. The ordering of entries
# does not generally matter.
#
# Examples:
# 192.168.0.1
# 192.168.0.1 3939
# r.ripple.com 51235
# The default list of entries is:
# - r.ripple.com 51235
# - zaphod.alloy.ee 51235
# - sahyadri.isrdc.in 51235
#
# This will give you a good, up-to-date list of addresses:
# Examples:
#
# [ips]
# 192.168.0.1
# 192.168.0.1 2459
# r.ripple.com 51235
#
# The default is:
# [ips_fixed] addresses (if present)
# or
# ( r.ripple.com 51235 , zaphod.alloy.ee 51235 )
#
#
# [ips_fixed]
#
Expand All @@ -401,8 +397,8 @@
# Ripple network through a public-facing server, or for building a set
# of cluster peers.
#
# One IPv4 address or domain names per line is allowed. A port must be
# specified after adding a space to the address.
# One address or domain names per line is allowed. A port must be specified
# after adding a space to the address.
#
#
#
Expand Down
3 changes: 3 additions & 0 deletions src/ripple/overlay/impl/OverlayImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,9 @@ OverlayImpl::onPrepare()

// Pool of servers operated by Alloy Networks - https://www.alloy.ee
bootstrapIps.push_back("zaphod.alloy.ee 51235");

// Pool of servers operated by ISRDC - https://isrdc.in
bootstrapIps.push_back("sahyadri.isrdc.in 51235");
}

m_resolver.resolve (bootstrapIps,
Expand Down

0 comments on commit c04c00d

Please sign in to comment.