mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-12 09:32:33 +00:00
Re-order wallet types
This commit is contained in:
parent
9c160e94eb
commit
97f32019db
1 changed files with 9 additions and 5 deletions
|
@ -598,17 +598,21 @@ Future<void> generateWalletTypes({required bool hasMonero, required bool hasBitc
|
|||
}
|
||||
|
||||
if (hasBitcoin) {
|
||||
outputContent += '\tWalletType.bitcoin,\n\tWalletType.litecoin,\n';
|
||||
}
|
||||
|
||||
if (hasHaven) {
|
||||
outputContent += '\tWalletType.haven,\n';
|
||||
outputContent += '\tWalletType.bitcoin,\n';
|
||||
}
|
||||
|
||||
if (hasEthereum) {
|
||||
outputContent += '\tWalletType.ethereum,\n';
|
||||
}
|
||||
|
||||
if (hasBitcoin) {
|
||||
outputContent += '\tWalletType.litecoin,\n';
|
||||
}
|
||||
|
||||
if (hasHaven) {
|
||||
outputContent += '\tWalletType.haven,\n';
|
||||
}
|
||||
|
||||
outputContent += '];\n';
|
||||
await walletTypesFile.writeAsString(outputContent);
|
||||
}
|
Loading…
Reference in a new issue