Skip to content

Commit

Permalink
mainnet: exclude failing nodes (#346)
Browse files Browse the repository at this point in the history
Signed-off-by: failfmi <[email protected]>
  • Loading branch information
failfmi authored Dec 10, 2021
1 parent 1727e69 commit fdfe23f
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions app/clients/hedera/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ import (
)

var mainnetNodes = map[string]hedera.AccountID{
"15.165.118.251:50211": {Account: 3},
"137.116.36.18:50211": {Account: 4},
"107.155.64.98:50211": {Account: 5},
"13.71.90.154:50211": {Account: 6},
"23.102.74.34:50211": {Account: 7},
"23.96.185.18:50211": {Account: 8},
"31.214.8.131:50211": {Account: 9},
"15.165.118.251:50211": {Account: 3},
"137.116.36.18:50211": {Account: 4},
"107.155.64.98:50211": {Account: 5},
"13.71.90.154:50211": {Account: 6},
"23.102.74.34:50211": {Account: 7},
"23.96.185.18:50211": {Account: 8},
//"31.214.8.131:50211": {Account: 9},
"179.190.33.184:50211": {Account: 10},
"69.87.221.231:50211": {Account: 11},
"51.140.102.228:50211": {Account: 12},
Expand All @@ -42,14 +42,14 @@ var mainnetNodes = map[string]hedera.AccountID{
"50.7.124.46:50211": {Account: 16},
"40.114.92.39:50211": {Account: 17},
"139.162.156.222:50211": {Account: 18},
"51.140.43.81:50211": {Account: 19},
"13.77.151.212:50211": {Account: 20},
"13.36.123.209:50211": {Account: 21},
"52.78.202.34:50211": {Account: 22},
"3.18.91.176:50211": {Account: 23},
"18.135.7.211:50211": {Account: 24},
"13.232.240.207:50211": {Account: 25},
"13.228.103.14:50211": {Account: 26},
//"51.140.43.81:50211": {Account: 19},
"13.77.151.212:50211": {Account: 20},
"13.36.123.209:50211": {Account: 21},
"52.78.202.34:50211": {Account: 22},
"3.18.91.176:50211": {Account: 23},
//"18.135.7.211:50211": {Account: 24},
"13.232.240.207:50211": {Account: 25},
"13.228.103.14:50211": {Account: 26},
}

// Node struct holding the hedera.Client. Used to interact with Hedera consensus nodes
Expand Down

0 comments on commit fdfe23f

Please sign in to comment.