Fix renamming first derivation

This commit is contained in:
poka 2021-11-05 19:37:19 +01:00
parent d1ffe2a5dc
commit b3efa766d6
1 changed files with 7 additions and 12 deletions

View File

@ -136,20 +136,15 @@ class WalletOptionsProvider with ChangeNotifier {
String newConfig =
await _walletConfig.readAsLines().then((List<String> lines) {
int nbrLines = lines.length;
if (nbrLines != 1) {
for (String wLine in lines) {
String wID = "${wLine.split(':')[0]}:${wLine.split(':')[1]}";
String deri = wLine.split(':')[3];
if (wID == _walletID) {
lines.remove(wLine);
lines.add('$_walletID:$_newName:$deri');
}
for (String wLine in lines) {
String wID = "${wLine.split(':')[0]}:${wLine.split(':')[1]}";
String deri = wLine.split(':')[3];
if (wID == _walletID) {
lines.remove(wLine);
lines.add('$_walletID:$_newName:$deri');
}
return lines.join('\n');
} else {
return 'true';
}
return lines.join('\n');
});
await _walletConfig.delete();