mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 20:09:23 +00:00
Revert "disable wownero on desktop and xmr on windows"
But still disable on windows
This reverts commit 0062294488
This commit is contained in:
parent
3034cf11f2
commit
768c51c03b
2 changed files with 4 additions and 9 deletions
|
@ -46,12 +46,9 @@ class _AddWalletViewState extends State<AddWalletView> {
|
|||
_searchFieldController = TextEditingController();
|
||||
_searchFocusNode = FocusNode();
|
||||
coins.remove(Coin.firoTestNet);
|
||||
if (isDesktop) {
|
||||
coins.remove(Coin.wownero);
|
||||
if (Platform.isWindows) {
|
||||
coins.remove(Coin.monero);
|
||||
}
|
||||
}
|
||||
coins.remove(Coin.wonero);
|
||||
super.initState();
|
||||
}
|
||||
|
||||
|
|
|
@ -54,11 +54,9 @@ class _NodesSettings extends ConsumerState<NodesSettings> {
|
|||
void initState() {
|
||||
_coins = _coins.toList();
|
||||
_coins.remove(Coin.firoTestNet);
|
||||
if (isDesktop) {
|
||||
_coins.remove(Coin.wownero);
|
||||
if (Platform.isWindows) {
|
||||
_coins.remove(Coin.monero);
|
||||
}
|
||||
_coins.remove(Coin.wownero);
|
||||
}
|
||||
|
||||
searchNodeController = TextEditingController();
|
||||
|
|
Loading…
Reference in a new issue