Skip to content

Commit

Permalink
Add more bootnodes (#1525)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilblackdragon authored Oct 22, 2019
1 parent 5635982 commit 991a4a7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/start_testnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
print("* Running NEAR validator node for Official TestNet *")
print("****************************************************")

DEFAULT_BOOT_NODE = "AJLCcX4Uymeq5ssavjUCyEA8SV6Y365Mh5h4shqMSTDA@34.94.33.164:24567"
DEFAULT_BOOT_NODE = ','.join([
"AJLCcX4Uymeq5ssavjUCyEA8SV6Y365Mh5h4shqMSTDA@34.94.33.164:24567",
"EY9mX5FYyR1sqrGwkqCbUrmjgAtXs4DeNaf1sjG9MrkY@35.226.146.230:24567",
"8K7NG5v2yvSq4A1wQuqSNvyY334BVq3ohvdu9wgpgjLG@104.154.188.160:24567",
"FNCMYTt9Gexq6Nq3Z67gRX7eeZAh27swd1nrwN3smT9Q@35.246.133.183:24567",
])

parser = argparse.ArgumentParser()
parser.add_argument('--local', action='store_true', help='deprecated: use --nodocker')
Expand Down

0 comments on commit 991a4a7

Please sign in to comment.