mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
Fix for backup restore
This commit is contained in:
parent
2480e4d984
commit
e7e8d5008a
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:typed_data';
|
import 'dart:typed_data';
|
||||||
|
import 'package:cw_core/wallet_type.dart';
|
||||||
import 'package:flutter/foundation.dart';
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:hive/hive.dart';
|
import 'package:hive/hive.dart';
|
||||||
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
|
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
|
||||||
|
@ -168,7 +169,7 @@ class BackupService {
|
||||||
|
|
||||||
if (!isCorrentCurrentWallet) {
|
if (!isCorrentCurrentWallet) {
|
||||||
currentWalletName = _correctWallets.first.name;
|
currentWalletName = _correctWallets.first.name;
|
||||||
currentWalletType = _correctWallets.first.type.index;
|
currentWalletType = serializeToInt(_correctWallets.first.type);
|
||||||
}
|
}
|
||||||
|
|
||||||
await _sharedPreferences.setString(PreferencesKey.currentWalletName,
|
await _sharedPreferences.setString(PreferencesKey.currentWalletName,
|
||||||
|
|
Loading…
Reference in a new issue