mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
02fd12f5f8
* clear transactionHistory before rescan * move the clear method to the abstract class
30 lines
No EOL
742 B
Dart
30 lines
No EOL
742 B
Dart
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
part 'rescan_view_model.g.dart';
|
|
|
|
class RescanViewModel = RescanViewModelBase with _$RescanViewModel;
|
|
|
|
enum RescanWalletState { rescaning, none }
|
|
|
|
abstract class RescanViewModelBase with Store {
|
|
RescanViewModelBase(this._wallet)
|
|
: state = RescanWalletState.none,
|
|
isButtonEnabled = false;
|
|
|
|
final WalletBase _wallet;
|
|
|
|
@observable
|
|
RescanWalletState state;
|
|
|
|
@observable
|
|
bool isButtonEnabled;
|
|
|
|
@action
|
|
Future<void> rescanCurrentWallet({required int restoreHeight}) async {
|
|
state = RescanWalletState.rescaning;
|
|
await _wallet.rescan(height: restoreHeight);
|
|
_wallet.transactionHistory.clear();
|
|
state = RescanWalletState.none;
|
|
}
|
|
} |