The problem is the peer-to-peer connection of the embedded node. You can edit the config.json
as follows:
"Net": {
"MinPeers": 8,
"MaxPeers": 16,
"MaxPendingPeers": 8,
"MinConnectedPeers": 8
}
What we should do to improve the embedding node syncing performance:
- Upgrade the p2p networking layer of
znnd
. libp2p is a good candidate. - Increase the public node count in the network. I’ve proposed several methods to incentivize public full nodes for a healthy p2p network.