Hi, I am struggling running the cardano-node pointing to the Deadalus ledger.
I wonder if you could give me some tips or point me to the right documentation/information.
I am runnning on the Preview Tesnet.
When I run cardano-node, I can run a query that tells me the database is sync to 100%
$ ./cardano-cli query tip --testnet-magic 2
{
"block": 258714,
"epoch": 62,
"era": "Babbage",
"hash": "3967dd604e0cb538264fdfb785c0240c2bac065a21d74e82791440f12903e790",
"slot": 5392351,
"syncProgress": "100.00"
}
If I then close the node, start Daedalus, and run the same command, I get this.
Note how the slot number is almost the same on both queries, but the sync % is very different.
Daedalus is stuck at 44% and would not move.
$ ./cardano-cli query tip --testnet-magic 2
{
"block": 258282,
"epoch": 62,
"era": "Babbage",
"hash": "6e314d5baa938034208d1c7c082b0e8edb44985316ad159f5c079dabebd82682",
"slot": 5383347,
"syncProgress": "44.70"
}
I am running on Linux and started the node as follows.
I think the problem may be the network configuration files.
When I start the cardano-node, I used config files I got online.
Perhaps the ones used by Dedalus are different? I am not sure where they get stored (Linux).
./cardano-node run --topology ./lpconfig/topology.json --database-path ~/.local/share/Daedalus/preview/chain --port 3001 --config ./lpconfig/config.json --socket-path ~/.local/share/Daedalus/preview/cardano-node.socket
Thanks.