Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,12 @@ class _WalletNetworkSettingsViewState
_percent = 1;
_blocksRemaining = 0;
} else {
_percent =
(ref.read(pWallets).getWallet(widget.walletId) as ElectrumXInterface?)
?.refreshingPercent ??
0;
final wallet = ref.read(pWallets).getWallet(widget.walletId);
if (wallet is ElectrumXInterface) {
_percent = wallet.refreshingPercent ?? 0;
} else {
_percent = 0;
}
_blocksRemaining = -1;
}

Expand Down
4 changes: 3 additions & 1 deletion lib/wallets/wallet/wallet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,9 @@ abstract class Wallet<T extends CryptoCurrency> {
}

void _fireRefreshPercentChange(double percent) {
(this as ElectrumXInterface?)?.refreshingPercent = percent;
if (this is ElectrumXInterface) {
(this as ElectrumXInterface?)?.refreshingPercent = percent;
}
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(percent, walletId));
}

Expand Down
Loading