mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-24 19:46:16 +00:00
chore: build errors
This commit is contained in:
parent
378e1606d8
commit
aa6f932d8a
2 changed files with 20 additions and 17 deletions
|
@ -1767,7 +1767,7 @@ abstract class ElectrumWalletBase
|
||||||
case ConnectionStatus.disconnected:
|
case ConnectionStatus.disconnected:
|
||||||
if (syncStatus is! NotConnectedSyncStatus &&
|
if (syncStatus is! NotConnectedSyncStatus &&
|
||||||
syncStatus is! ConnectingSyncStatus &&
|
syncStatus is! ConnectingSyncStatus &&
|
||||||
syncStatus is! SyncronizingSyncStatus) {
|
syncStatus is! SynchronizingSyncStatus) {
|
||||||
syncStatus = NotConnectedSyncStatus();
|
syncStatus = NotConnectedSyncStatus();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -146,13 +146,16 @@ import 'package:mobx/mobx.dart';
|
||||||
required this.address,
|
required this.address,
|
||||||
required this.txCount,
|
required this.txCount,
|
||||||
required this.balance,
|
required this.balance,
|
||||||
required this.isChange});
|
required this.isChange,
|
||||||
|
required this.derivationPath,
|
||||||
|
});
|
||||||
final int id;
|
final int id;
|
||||||
final String name;
|
final String name;
|
||||||
final String address;
|
final String address;
|
||||||
final int txCount;
|
final int txCount;
|
||||||
final int balance;
|
final int balance;
|
||||||
final bool isChange;
|
final bool isChange;
|
||||||
|
final String derivationPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract class Bitcoin {
|
abstract class Bitcoin {
|
||||||
|
|
Loading…
Reference in a new issue