Skip to content

Commit 0d21e1e

Browse files
authored
[DDW-171] Treat wallets with 100% syncing progress as synced wallets (#1984)
1 parent a664040 commit 0d21e1e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Changelog
55

66
### Fixes
77

8+
- Treat wallets with 100% syncing progress as synced wallets ([PR 1984](https://github.com/input-output-hk/daedalus/pull/1984))
89
- Fixed `cardano-node` / `jormungandr` and `cardano-wallet` info on the "Diagnostics" screen ([PR 1980](https://github.com/input-output-hk/daedalus/pull/1980))
910
- Persist "Blank screen fix" / "--safe-mode" flag between Daedalus restarts ([PR 1979](https://github.com/input-output-hk/daedalus/pull/1979))
1011
- Track `cardano-node` / `jormungandr` PID and use it for safe shutdowns and improve cardano-launcher error handling ([PR 1972](https://github.com/input-output-hk/daedalus/pull/1972))

source/renderer/app/domains/Wallet.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,10 @@ export default class Wallet {
114114
}
115115

116116
@computed get isRestoring(): boolean {
117-
return get(this, 'syncState.status') === WalletSyncStateStatuses.RESTORING;
117+
return (
118+
get(this, 'syncState.status') === WalletSyncStateStatuses.RESTORING &&
119+
this.restorationProgress < 100
120+
);
118121
}
119122

120123
@computed get isNotResponding(): boolean {

0 commit comments

Comments
 (0)