mirror of
https://github.com/status-im/status-go.git
synced 2026-09-02 10:01:21 +00:00
* fix(waku): Avoid peer reconnection storm (#7447) * fix(waku): Avoid peer reconnection storm This commit is fixing 2 issues in waku: 1. Unnecesary disconnect/reconnects 2. dns failure at startup will silently give up - no retries - filter connection changes and forward the signal only when a change happened - dnsDiscovery: retry on failure with exponential backoff * chore: bump logos-delivery Include https://github.com/logos-messaging/logos-delivery-go/pull/1302 * chore: add usds to mandatory tokens (#7455) * feat(preferences): add secure storage for app settings (#7460) * Should replace QSettings that are stored in files refs status-im/status-app#20922 --------- Co-authored-by: Alex Jbanca <47811206+alexjba@users.noreply.github.com> Co-authored-by: Andrey Bocharnikov <andrey.bocharnikov@gmail.com>
Structure
A Status node is a container of services. These services are passed to geth and registered with geth as APIs and Protocols.
Status node manages all the services and the geth node.
Status node is managed by api/geth_backend.go
So:
GethBackend manages StatusNode, StatusNode manages GethNode