There is something wrong with my relay topology json file. It is as follows;
{
“Producers”: [
{
“addr”: “34.105.141.133”,
“port”: 3000,
“valency”: 1
}
]
}{
“Producers”: [
{
“addr”: “relays-new.ff.dev.cardano.org”,
“port”: 3001,
“valency”: 1
}
]
}
but my command;
cardano-node run --topology ff-topology.json --database-path
db --socket-path db/socket --port 3001 --config ff-config.json
Doesn’t work
Can anyone help?
EDIT - I solved it myself, the above json was incorrect. It should’ve been;
{
“Producers”: [
{
“addr”: “34.105.141.133”,
“port”: 3000,
“valency”: 1
},
{
“addr”: “relays-new.ff.dev.cardano.org”,
“port”: 3001,
“valency”: 1
}
]
}