mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
Generic fixes (#1716)
* reset brightness after using * set default qr to auto detect * minor safety enhancement * close socket after checking connectivity * fix incorrect parent exception class * pump medium and fast priorities even if they are equal to slow * Add Ton to exchange * fix silent payments add Seth bitcoin node * deselect quantex add seth node for existing users * fix node uri
This commit is contained in:
parent
d933743a72
commit
6dba73a1d5
11 changed files with 119 additions and 43 deletions
|
@ -11,6 +11,8 @@ Timer? _checkConnectionTimer;
|
|||
void startCheckConnectionReaction(WalletBase wallet, SettingsStore settingsStore,
|
||||
{int timeInterval = 5}) {
|
||||
_checkConnectionTimer?.cancel();
|
||||
// TODO: check the validity of this code, and if it's working fine, then no need for
|
||||
// having the connect function in electrum.dart when the syncstatus is lost or failed and add the not connected state
|
||||
_checkConnectionTimer = Timer.periodic(Duration(seconds: timeInterval), (_) async {
|
||||
if (wallet.type == WalletType.bitcoin && wallet.syncStatus is SyncingSyncStatus) {
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue