File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,8 @@ class WalletViewModel {
157157 self . currentBlockHeight = height
158158 // Receiving chain height implies we have peer connectivity
159159 self . isKyotoConnected = true
160+ // Ensure UI reflects syncing as soon as we see chain activity
161+ if self . walletSyncState == . notStarted { self . walletSyncState = . syncing }
160162 // Auto-refresh wallet data when Kyoto receives new blocks
161163 self . getBalance ( )
162164 self . getTransactions ( )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ struct ActivityHomeHeaderView: View {
2626 Spacer ( )
2727
2828 HStack {
29- if needsFullScan {
29+ if needsFullScan && !isKyotoClient {
3030 Text ( " \( inspectedScripts) " )
3131 . padding ( . trailing, - 5.0 )
3232 . fontWeight ( . semibold)
You can’t perform that action at this time.
0 commit comments