Relay topology json

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
}
]
}

1 Like

@JoshyJ Too bad you withdrew the post, it looked very interesting. I suppose you solved the problem yourself. But of course for the value of the forum it would be nice if you wrote the answer here instead deleting the thread to help others with the same problem. Thanks!

2 Likes