Nis testnet sync issue

Hello! I’m using nis 0.6.97 in Testnet. Few days ago syncronization stuck.
I tried to clear blockchain db and start syncing from scratch, but no success.

After that i digged logs and saw that node is trying to sync with 3 known nodes: bob.nem.ninja, bigalice2 ( 104.238.226.60 ) and madalice2 ( 23.228.67.85 ). But none of them is available at this moment (port 7890 is not responding). I tried from few different hosts, and they are really unavailable. So, as i understand, at this moment there is no way to connect to testnet with a new node.

So, my question is: how can i add some custom nodes for syncronization by using some custom config or some rpc call? I couldn’t find any way to do it.

Thanks in advance!

As a temporarily solution please include json file called peers-config_testnet.json in /package/nis/peers-config_testnet.json.
Content of the file:

{
“_info”: “this file contains a list of all trusted peers and can be shared”,
“knownPeers”: [
{
“endpoint”: {
“host”: “104.128.226.60”,
“port”: 7890,
“protocol”: “http”
},
“identity”: {
“name”: “bigalice2”,
“public-key”: “147eb3e4fccb655c03f4b6b12fc145f6a740c9334a8f3c59131dffd1fd42a996”
}
},
{
“endpoint”: {
“host”: “23.228.67.85”,
“port”: 7890,
“protocol”: “http”
},
“identity”: {
“name”: “medalice2”,
“public-key”: “0d57583239ee7bcbd649524332e0bac6b7e82bf48676c73ae6c4dd01d70ec1af”
}
},
{
“endpoint”: {
“host”: “95.216.73.245”,
“port”: 7890,
“protocol”: “http”
},
“identity”: {
“name”: “HugeTestAlice”,
“public-key”: “595613ba7254a20f1c4c7d215103509f9f9c809de03897cff2b3527b181274e2”
}
},
{
“endpoint”: {
“host”: “95.216.73.243”,
“port”: 7890,
“protocol”: “http”
},
“identity”: {
“name”: “HugeTestAlice2”,
“public-key”: “9822cf9571a5551ec19720b87a567a20797b75ec4b6711387643fc352fef704e”
}
}
]
}

Thanks a lot, this solution worked!

1 Like