Please make sure you have the latest Zingo PC.
Version: 2.0.17 (macOS, non-MAS DMG build)
Describe the bug
After restoring a wallet from a seed phrase with a very recent birthday (within a few hours of the current chain tip), the app gets permanently stuck displaying "Connecting..." in the sidebar. The lightwalletd server (https://zec.rocks:443) is reachable and returns the latest block height successfully — but the sync process never actually starts, so the wallet never transitions to "Syncing" or "Connected". The wallet file (zingo-wallet-5.dat) is created on disk and is several hundred KB, confirming the restore itself completed. The issue appears to be that run_sync() either silently fails or the sync task is never launched after wallet initialization, causing poll_sync() to perpetually return "Sync task has not been launched." with verificationProgress remaining null.
To Reproduce
Steps to reproduce the behavior:
- Open Zingo PC on macOS (version 2.0.17, DMG build)
- Go to Wallet → Add New Wallet
- Select "Restore from Seed Phrase"
- Enter a valid 24-word seed phrase
- Enter a birthday that is within the last few hours of the current block height (e.g., ~2890000 for mainnet as of June 2026)
- Select the default server (
https://zec.rocks:443, mainnet)
- Click "Restore Wallet"
- Observe: after the loading screen completes and the dashboard appears, the sidebar status indicator shows only the yellow "Connecting..." state and never progresses to "Syncing" with a percentage
Expected behavior
After restoring a wallet with a very recent birthday, the sync should complete almost instantly (since there are few or no blocks to scan). The sidebar should briefly show "Syncing" at 100%, then transition to a green "Connected" state. Alternatively, if sync fails, a visible error should be shown.
Desktop (please complete the following information):
(Apple Silicon / arm64)
- App Version: 2.0.17 (DMG, non-MAS)
- Server:
https://zec.rocks:443 (mainnet, default)
Additional context
info_server() succeeds — the latest block height is returned correctly, confirming network/server connectivity.
- The wallet file exists at
~/Library/Application Support/Zcash/zingo-wallet-5.dat (~hundreds of KB).
poll_sync() keeps returning "Sync task has not been launched.", triggering refreshSync() → run_sync() repeatedly, but the sync task never seems to actually launch.
verificationProgress stays null, which is the direct cause of the "Connecting..." display (see Sidebar.tsx lines 185–199).
- No useful console logs are available from the production DMG build because
console-message events are not forwarded to startup.log when running with sandbox: true.
- The same seed/birthday/server combination likely works fine on other Zingo/zcashd setups — the issue appears specific to the gRPC streaming sync initialization path in v2.0.17 on macOS.
- Suspect root cause: the gRPC streaming connection (used by
sync()) fails silently while the one-shot gRPC call (used by get_latest_block() / info_server()) succeeds. This could be related to TLS certificate handling, HTTP/2 negotiation, or the tokio runtime on macOS arm64.

Please make sure you have the latest Zingo PC.
Version: 2.0.17 (macOS, non-MAS DMG build)
Describe the bug
After restoring a wallet from a seed phrase with a very recent birthday (within a few hours of the current chain tip), the app gets permanently stuck displaying "Connecting..." in the sidebar. The lightwalletd server (
https://zec.rocks:443) is reachable and returns the latest block height successfully — but the sync process never actually starts, so the wallet never transitions to "Syncing" or "Connected". The wallet file (zingo-wallet-5.dat) is created on disk and is several hundred KB, confirming the restore itself completed. The issue appears to be thatrun_sync()either silently fails or the sync task is never launched after wallet initialization, causingpoll_sync()to perpetually return "Sync task has not been launched." withverificationProgressremainingnull.To Reproduce
Steps to reproduce the behavior:
https://zec.rocks:443, mainnet)Expected behavior
After restoring a wallet with a very recent birthday, the sync should complete almost instantly (since there are few or no blocks to scan). The sidebar should briefly show "Syncing" at 100%, then transition to a green "Connected" state. Alternatively, if sync fails, a visible error should be shown.
Desktop (please complete the following information):
(Apple Silicon / arm64)
https://zec.rocks:443(mainnet, default)Additional context
info_server()succeeds — the latest block height is returned correctly, confirming network/server connectivity.~/Library/Application Support/Zcash/zingo-wallet-5.dat(~hundreds of KB).poll_sync()keeps returning"Sync task has not been launched.", triggeringrefreshSync()→run_sync()repeatedly, but the sync task never seems to actually launch.verificationProgressstaysnull, which is the direct cause of the "Connecting..." display (see Sidebar.tsx lines 185–199).console-messageevents are not forwarded tostartup.logwhen running withsandbox: true.sync()) fails silently while the one-shot gRPC call (used byget_latest_block()/info_server()) succeeds. This could be related to TLS certificate handling, HTTP/2 negotiation, or the tokio runtime on macOS arm64.